In this video· click a step to jump to it
Test recording
Anansio — app walkthrough
131,777 ms · 151,064 pixels changed
We built this regression test for anansio.com — it's yours to keep, free.
Take this test with you
This is a real Playwright test, recorded against anansio.com. Claim it into your own workspace and re-run it on every deploy — free.
export async function test(page, baseUrl, screenshotPath, stepLogger) {
const shot = (n, s) => screenshotPath.replace('.png', '-' + n + '-' + s + '.png');
const ORIGIN = "https://anansio.com";
const seen = new Set();
let idx = 1, pi = 1;
// Public marketing context (1 shot, pre-login)
await page.goto("https://anansio.com/", { waitUntil: 'domcontentloaded' }).catch(function(){});
await page.waitForTimeout(1800);
{ const cb = page.getByRole('button', { name: /accept|got it|allow|^ok$/i }).first(); if (await cb.isVisible().catch(function(){return false;})) await cb.click({timeout:1500}).catch(function(){}); }
stepLogger.log('Scenario 1: Public home'); await page.screenshot({ path: shot(idx++, 'public-home'), fullPage: true });
// Authed landing
await page.goto("https://anansio.com/dashboard", { waitUntil: 'domcontentloaded' }).catch(function(){});Checks run
Notes from the demo run
AI-generatedAnansio compresses outbound prospecting into one sentence: describe your ideal client, and it finds matching companies, unlocks verified contacts for a credit, and helps you draft + send. The authed app is well-structured — Dashboard, Companies, Lists, Campaigns, My Company, Account — and an AI Company Search turned a plain-English query ('B2B fintech SaaS startups in the US, 10-50 employees') into a live result set of 900k+ companies with category facets, per-company quality scores and contact counts. Signup handed over 200 free credits.
- Natural-language targeting that worksTyping the ICP as a sentence returned a real, filterable company list in one step — no boolean-filter gymnastics. That's the differentiator, and it delivered live.
- One clear first-session pathThe getting-started framing (search -> save -> unlock -> send) orients a new user instead of dropping them into an empty CRM.
- Generous free credits200 credits on signup with no card is a confident way to let founders feel the product before paying.
- Onboarding tour overlays the resultsA multi-step 'Step 1 of 3' coach-mark sits on top of the first search results and re-appears across screens; it obscures the very data a new user wants to explore. A single dismissible tip, or letting the results breathe first, would read cleaner. (We dismissed it to show the underlying product.)
- /signup path 404sanansio.com/signup returns a 404 — real registration is only reachable via the 'Start free' button (which routes to the AWS Cognito hosted UI). A direct /signup redirect would catch anyone guessing the URL.
- /outreach (send)·Opened the Campaigns surface for the screenshot but never sent outbound mail on the founder's behalf.
Visual change
Share this run
Proof your app is not AI slop
This test was built for anansio.com — claim it free
One click copies the test and baseline screenshots into your own Lastest workspace. Re-run on every deploy and catch regressions before your users do — free, no card required.


