In this video· click a step to jump to it
Test recording
smarterthanai — app walkthrough
93,515 ms · 20,978 pixels changed
We built this regression test for smarterthanai.app — it's yours to keep, free.
Take this test with you
This is a real Playwright test, recorded against smarterthanai.app. Claim it into your own workspace and re-run it on every deploy — free.
export async function test(page, baseUrl, screenshotPath, stepLogger) {
const CFG = {"appEntry":"/fr/campaigns","maxNav":8,"appRoutes":["/fr/campaigns/new","/fr/tests","/fr/themes","/fr/billing","/fr/settings","/fr/formule","/onboarding/welcome"]};
const shot = (i, s) => screenshotPath.replace('.png', '-' + i + '-' + s + '.png');
page.setDefaultTimeout(8000);
const noise = ['**/cdn-cgi/scripts/**/email-decode.min.js','**/browser.sentry-cdn.com/**','**/o.sentry-cdn.com/**','**/cdn.segment.com/**','**/connect.facebook.net/**','**/www.googletagmanager.com/**','**/region1.google-analytics.com/**','**/analytics.google.com/**','**/static.hotjar.com/**','**/*.posthog.com/**'];
for (const pat of noise) { await page.route(pat, function (r) { r.abort().catch(function(){}); }).catch(function(){}); }
const guard404 = async function () {
var t = await page.locator('body').innerText().then(function (x) { return x.slice(0, 400); }).catch(function () { return ''; });
return /404|page not found|doesn.t exist|lost in|off the trail|cannot get/i.test(t);
};
const dismissModal = async function () {
var d = page.getByRole('button', { name: /not now|maybe later|^skip$|skip for now|dismiss|^close$|no thanks|got it|continue browsing/i }).first();Checks run
Notes from the demo run
AI-generatedSmarter Than AI is a clean recruiting/assessment SaaS (French-first) built on the thesis of evaluating candidates on the things AI can't do well. The free 'Decouverte' plan activates with no card, and the authenticated app is structured around Campaigns and a shared Tests library, with clear org/account/role settings.
- No-card free planThe Decouverte tier activates in one click with 'Aucune carte bancaire' - removes the biggest signup drop-off for an evaluation tool.
- Reusable tests library'Tests disponibles' separates the assessment library from individual campaigns, a clean information architecture for repeat hiring.
- Clear org/role modelSettings cleanly separates Organisation vs Compte and shows the user's role (Admin), good for team accounts.
- Locale switch mid-signupSubmitting the EN /signup form bounces to /fr/signup, which can drop a half-filled form; pinning locale before the form would smooth this.
- PKCE auto-login raceThe email-confirm link lands on /fr?code=... and relies on the SPA exchanging the code; navigating away too quickly leaves you unauthenticated until you log in again.
2 visual changes
Share this run
Proof your app is not AI slop
This test was built for smarterthanai.app — 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.





