In this video· click a step to jump to it
Test recording
FounderWise — app walkthrough
149,465 ms · 27,641 pixels changed
We built this regression test for app.founderwise.io — it's yours to keep, free.
Take this test with you
This is a real Playwright test, recorded against app.founderwise.io. 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, slug) => screenshotPath.replace('.png', `-${n}-${slug}.png`);
const APP = 'https://app.founderwise.io';
const SCROLL_THROUGH = "(async () => { const ease = t => 1 - Math.pow(1 - t, 3); const max = Math.max(0, document.body.scrollHeight - window.innerHeight); if (max < 40) return; const anim = (a, b, ms) => new Promise(res => { const t0 = performance.now(); const step = now => { const p = Math.min(1, (now - t0) / ms); window.scrollTo(0, a + (b - a) * ease(p)); p < 1 ? requestAnimationFrame(step) : res(); }; requestAnimationFrame(step); }); await anim(0, max, 1400); await new Promise(r => setTimeout(r, 350)); await anim(max, 0, 800); })()";
await page.context().setExtraHTTPHeaders({ 'User-Agent': 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36' });
await page.route('**/cdn-cgi/scripts/**', function (r) { r.abort(); }).catch(function () {});
await page.route('**/*googletagmanager.com/**', function (r) { r.abort(); }).catch(function () {});
// ── 1. Public marketing home ────────────────────────────────────────────
stepLogger.log('Marketing home');
await page.goto(baseUrl, { waitUntil: 'domcontentloaded' });Checks run
Notes from the demo run
AI-generatedWe signed in with the emailed one-time link and drove the whole signed-in product: Today, The Desk, My Actions, My Startup and FounderTools, then both free tools, a Pro-gated one, and the Traction Audit. The Desk is the standout: ten dated, genuinely opinionated market notes, each with a 7-day or 30-day 'I will act on this' commitment button that files into My Actions with a clock. That loop, read something and put a deadline on it, is a real product idea and not one we have seen elsewhere. Two things tripped us on the way through.
- The commitment loop is the productEvery Desk item carries 'I WILL ACT ON THIS · 7 DAYS / 30 DAYS' and My Actions says 'Reading becomes action or it expires'. Turning a newsletter into a tracked commitment is a sharper wedge than the dashboard framing on the marketing page suggests.
- One door for signup and sign-in'New here or coming back, it is the same door' with a single email field and a link that works once is the lowest-friction entry we tested today, and it sidesteps password reset entirely.
- The Desk content is dated and specificEntries from 2026-09-13 through 2026-09-20 on AfCFTA data-flow annexes, n8n security advisories, term-sheet mechanics. Concrete enough to argue with, which is the point.
- Four of the six FounderTools are Pro-only, and you only find out after the clickThe dashboard tile shows a small PRO chip, but opening Growth Engine Model, Runway Milestone Ladder, Evidence Dashboard or GTM Stack Selector lands on an otherwise empty page reading 'works for subscribers'. Three clicks in a row can end in three identical paywalls. Showing a locked preview of the tool behind the gate would convert better than a bare wall.
- The dashboard tabs do not survive a link or a back button cleanlyThe tab state lives in the URL hash but the panel only re-renders on a full load, so navigating from /dashboard to /dashboard#desk in the same document leaves the Today panel on screen. Anyone sharing a deep link to The Desk, or using browser back between tabs, sees the wrong panel.
- Traction Audit completion·Captured the first question; did not run all 14 or submit an email for the report.
- GET THE TUNED BRIEF·Paid upgrade, deliberately not entered.
Visual change
Share this run
Proof your app is not AI slop
This test was built for app.founderwise.io — 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.


