In this video· click a step to jump to it
Test recording
Dumpt — app walkthrough
227,987 ms · 218,681 pixels changed
We built this regression test for dumpt.online — it's yours to keep, free.
Take this test with you
This is a real Playwright test, recorded against dumpt.online. Claim it into your own workspace and re-run it on every deploy — free.
export async function test(page, baseUrl, screenshotPath, stepLogger) {
const shot = (i, slug) => screenshotPath.replace('.png', '-' + i + '-' + 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); })()";
const UA = "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/140.0.0.0 Safari/537.36";
await page.context().setExtraHTTPHeaders({ 'User-Agent': UA });
for (const pattern of ['**/sentry-cdn.com/**', '**/browser.sentry-cdn.com/**', '**/cdn.segment.com/**', '**/connect.facebook.net/**', '**/*.posthog.com/**', '**/googletagmanager.com/**', '**/google-analytics.com/**', '**/*.clarity.ms/**', '**/doubleclick.net/**']) {
await page.route(pattern, function (r) { r.abort(); }).catch(function () {});
}
const dismiss = async function () {
for (const rx of [/^accept$/i, /accept all/i, /got it/i, /allow all/i, /^ok$/i, /skip for now/i, /maybe later/i, /^later$/i, /not now/i, /^close$/i, /^dismiss$/i]) {
await page.getByRole('button', { name: rx }).first().click({ timeout: 1200 }).catch(function () {});
}Checks run
Notes from the demo run
AI-generatedDumpt is one idea executed tightly. Signup sessions you immediately onto /dashboard, and the product is three screens that each do one job: /dump takes an unranked ramble and 'Build my day' turns it into scheduled cards, /rhythm holds the working-hours rules every build is laid inside, and /history keeps the sheets. The copy is unusually confident - 'Dump everything. Don't rank it, don't format it - that part is the machine's job.'
- The empty state teaches the product/dump's placeholder is a real example ramble ('read a book for school about 45 minutes...') rather than 'Enter text'. A first-time user understands the input format without reading a single instruction.
- Rhythm is a settings page people will finishWorkday start and end, no-work day toggles, and Morning/Midday/Afternoon/Evening windows all sit on one screen behind a single 'Save the rules' - no nested preference tree.
- The price is named where the limit bites$29-once appears on /history and /dashboard at the exact moment the Scratch limit matters, not as an interrupting upgrade modal.
- /settings 404s while /dashboard/settings worksThe nav links the deep path correctly, but /settings - what a user actually types - returns Next's bare 404. A redirect is a one-line fix in next.config.
- The 24-hour wipe is only explained on /historyScratch dumps and schedules are deleted 24h after they are built, but you learn that on a page you visit after your first build. Saying it on /dump before the first 'Build my day' would set expectations at the right moment.
- /upgrade·Payment surface - never entered on a demo run
7 visual changes
Share this run
Proof your app is not AI slop
This test was built for dumpt.online — 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.




















