As founders, we can be bad at testing our own products. We already know the flows. We know where to click. We know what each screen means.
New users don’t.
And that’s where most products break. Not bugs — UX.
AI can help you see your product like a stranger again.
Here’s how.
Let’s start with the simplest setup. Then, we’ll look at more advanced ones later.
Open your app in a private window. Pretend you're a brand-new user. Do one thing a first-time user should do, like sign up and send an invoice.
Record your screen while you do it (Mac/Windows has this built-in).
Then, drop that video into any AI chat tool you use. Ask it to act like a confused new user and tell you:
That’s it.
You’ll spot small UX issues that cost you users, and you’ll know exactly what to fix.
Now let’s make it faster and more repeatable.
This version utilizes test scripts to automate clicks and allows AI to perform the review.
You’ll need a test tool like:
(If you already have automated tests, you’re halfway there.)
The idea:
What to change in your test
After each step, save the text from the screen.
In Playwright, that might look like this:
const body = await page.textContent('body');
fs.appendFileSync('flow-log.txt', \`\\nStep 3:\\n${body}\`);
Do that for every screen.
You’ll end up with a plain text log like:
Step 1 - Homepage
Step 2 - Signup form
Step 3 - Dashboard
Step 4 - Invoice form
Step 5 - Confirmation
Ask AI for feedback
Paste that log into ChatGPT, Claude — or any other tool of your choice — with this prompt:
Act like a new user.
Here's what the app shows, step by step.
Tell me where the flow is unclear or confusing.
Say what you would do at each step.
Now the AI reviews the flow — just like Level 1 — but with no manual clicking.
You can do this:
You’ll get fast, repeatable feedback — every time the test runs.
This is where the AI does everything:
It acts like a QA engineer — but faster and tireless.
You’ll find these in:
This needs:
But once it’s live, it’s powerful:
This is worth doing when:
How to set it up
You have 2 options:
Option 1: Use a QA platform with agents
These tools give you built-in agents:
What to do:
No code needed for most of these.
If you have dev resources:
It takes time to set up, but you get full control.
That's it.
Quick note: Don’t jump straight to agents.Only invest in them once:
If not, you may end up automating chaos.
putting to use immediately! thanks for the tips!