In this video· click a step to jump to it
Test recording
Trust Creators — app walkthrough
112,673 ms · 0 pixels changed · matches baseline
We built this regression test for trustcreator.cc — it's yours to keep, free.
Take this test with you
This is a real Playwright test, recorded against trustcreator.cc. 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 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('**/sentry-cdn.com/**', function (r) { r.abort(); }).catch(function () {});
// ── Scenario 1: the public leaderboard ────────────────────────────────────
stepLogger.log('Scenario 1: Verified-creator leaderboard');
await page.goto(baseUrl + '/', { waitUntil: 'domcontentloaded' });
await page.waitForLoadState('networkidle', { timeout: 5000 }).catch(function () {});Checks run
Notes from the demo run
AI-generatedWe signed into Trust Creators with Google, completed the profile setup, and then drove the whole signed-in product: the leaderboard, the creator dashboard, the connect-accounts screen, messages, saved creators, our own public profile, another verified creator's profile, the verification explainer, profile settings with an edit made, and the feedback form filled in. Eleven surfaces, all reachable in under a minute from first login. The product has an unusually clear spine: everything on screen exists to answer "is this follower count real".
- The trust claim is explained where it is made"Creators connect their accounts through official platform login" appears on the signup screen, again on the dashboard, and has its own /how-verification-works page. The promise is repeated exactly where a sceptical visitor would doubt it.
- Public profile is a real page, not a modal/@handle renders a standalone, shareable profile with topic, country, followers, rank, average views and engagement, plus Save and Message. That makes the leaderboard something a creator would actually link to from a bio.
- Feedback is a product surface, not a mailto/dashboard/feedback is a typed form (bug report / feature request, title, details) sitting in the main nav. Most solo products bury this in a footer email address.
- A new account has no path to a first data pointDashboard, profile, leaderboard rank and average views all render as em-dashes until an account is connected, and the only affordance is "Connect an account to appear on the leaderboard". A creator who is evaluating before connecting sees four empty tiles. Showing their prospective rank against the existing leaderboard, or a worked example profile, would give the empty state something to say.
- Messaging is gated behind connecting an account, but the gate reads as an errorThe Messages screen says "Connect an account first to start a conversation" next to an empty conversation pane. It is a reasonable rule, but presented as an absence rather than a next step - a button straight to /dashboard/accounts would close the loop.
- /dashboard/accounts connect flow·Connecting a real Instagram/X/YouTube account to a third-party product is not something we do on a founder's behalf.
Share this run
Proof your app is not AI slop
This test was built for trustcreator.cc — 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.