Static selectors break with code changes and can't prove that a site "looks good". Is that button really missing or was the id
changed? Is the site responsive on mobile? Is the correct image showing? These kinds of tests are impossible to validate with selectors alone and take a lot of time to test manually. GoodLooks.ai lets you visually validate your web pages with natural language prompts instead of selectors.
Check out our other products: TestDriver.ai and Dashcam.io.
git clone git@github.com:dashcamio/goodlooks.git
npm install
npx playwright test
Note that these examples use a demo key that gets rotated weekly; you'll want to create your own API KEY.
Validate that a cookie banner shows up.
Input | Code |
const { test, expect } = require("@playwright/test");
const goodlooks = require("goodlooks");
goodlooks.configure("zpka_c0d0539ada014283bc974f0fd55835ea_2b745cbf");
expect.extend(goodlooks);
test("framer", async ({ page }) => {
await page.goto("https://framer.com/");
await page.waitForTimeout(5000);
await expect(page).goodlooks("A request to enable cookies shows up");
}); |
|
Result | |
✅ PASS. The page displays a request to enable cookies with a message stating "We use cookies to personalize content, run ads, and analyze traffic." and an "Okay" button to acknowledge the message. |
Ensure a page is rendering mobile view properly.
Input | Code |
const { test, expect, devices } = require("@playwright/test");
const goodlooks = require("goodlooks");
goodlooks.configure("zpka_c0d0539ada014283bc974f0fd55835ea_2b745cbf");
expect.extend(goodlooks);
test("is mobile responsive", async ({ page }) => {
page.setViewportSize(devices["iPhone X"].viewport);
await page.goto("https://cnn.com/");
await expect(page).goodlooks("should be mobile responsive");
}); |
|
Explanation | |
✅ PASS. The page appears to be displayed in a mobile-responsive layout. The content is aligned correctly within the confines of a narrow screen typical of mobile devices. The text is legible, the menu collapses into a hamburger icon, and the image is scaled to fit the screen width, indicating that the design adapts to a mobile resolution. |
Validate that the video player is not playing.
Input | Code |
const { test, expect } = require("@playwright/test");
const goodlooks = require("goodlooks");
goodlooks.configure("zpka_c0d0539ada014283bc974f0fd55835ea_2b745cbf");
expect.extend(goodlooks);
test("rickroll", async ({ page }) => {
await page.goto("https://www.youtube.com/watch?v=dQw4w9WgXcQ");
await expect(page).goodlooks("video is not playing");
}); |
|
Result | |
✅ PASS. The page shows a video with the play button available and a timeline that is not progressing, indicating that the video is currently not playing. |
Ensure a page renders correct image contents via img
or canvas
.
Input | Code |
const { test, expect, devices } = require("@playwright/test");
const goodlooks = require("goodlooks");
goodlooks.configure("zpka_c0d0539ada014283bc974f0fd55835ea_2b745cbf");
expect.extend(goodlooks);
test("ycombinator", async ({ page }) => {
await page.goto("https://news.ycombinator.com");
await expect(page).goodlooks(
"there is an orange strip at the top of the page"
);
}); |
|
Result | |
✅ PASS. The page has an orange strip at the top, which is consistent with the given condition. |
Ensure a page renders correct image contents via img
or canvas
.
Input | Code |
const { test, expect, devices } = require("@playwright/test");
const goodlooks = require("goodlooks");
goodlooks.configure("zpka_c0d0539ada014283bc974f0fd55835ea_2b745cbf");
expect.extend(goodlooks);
test("correct image appears", async ({ page }) => {
await page.goto("https://eloquentjavascript.net/");
await expect(page).goodlooks("there is bird on this page");
}); |
|
Result | |
✅ PASS. There is an illustration of a bird on the left side of the page on the cover of a book titled "Eloquent JavaScript, Fourth Edition." |
Ensure a diverse representation of people appears on the page. Of course, this judgement is left up to AI.
Input | Code |
const { test, expect } = require("@playwright/test");
const goodlooks = require("goodlooks");
goodlooks.configure("zpka_c0d0539ada014283bc974f0fd55835ea_2b745cbf");
test("diversity", async ({ page }) => {
await page.goto("https://diversityequityinclusion.com/about/");
await expect(page).goodlooks("diverse people show up");
}); |
|
Result | |
✅ PASS. The page includes a collage of images featuring various individuals in different settings and professional environments, indicative of a diverse group of people. This aligns with the theme of "Diversity Equity Inclusion" that is prominently displayed on the page. |
Install via NPM.
npm install goodlooks
Use in Playwright tests!
const { test, expect, devices } = require("@playwright/test");
const goodlooks = require("goodlooks");
goodlooks.configure("zpka_c0d0539ada014283bc974f0fd55835ea_2b745cbf");
expect.extend(goodlooks);
Run your playwright tests in UI mode:
npx playwright test --ui
- Check the log to see the time frame where the
goodlooks
check is called. Hover over that. - A red highlight will appear in the Playwright UI, showing you the GUI state when the screenshot was taken
- You can also see the debug logs within the Console or Error tabs.
Only the visible part of the page is checked, not the full page. You must scroll to check other page parts.
The AI is great at identifying what is in an image, but it's not great at identifying where those things are in relation to other things. For example, don't ask GoodLooks to count items to validate their position on the screen.
You can manage your subscription here.
- TestDriver.ai - AI QA Agent for GitHub
- Dashcam.io - Instant Replay for Software Testing