https://github.com/kimmobrunfeldt/squint
Makes visual reviews of web app releases easy.
https://github.com/kimmobrunfeldt/squint
crawl diff node puppeteer screenshot testing visual visual-diff
Last synced: 3 months ago
JSON representation
Makes visual reviews of web app releases easy.
- Host: GitHub
- URL: https://github.com/kimmobrunfeldt/squint
- Owner: kimmobrunfeldt
- License: mit
- Created: 2021-08-12T15:45:22.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2021-08-16T21:40:30.000Z (almost 4 years ago)
- Last Synced: 2025-02-28T22:54:44.825Z (3 months ago)
- Topics: crawl, diff, node, puppeteer, screenshot, testing, visual, visual-diff
- Language: TypeScript
- Homepage:
- Size: 1.9 MB
- Stars: 30
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://github.com/kimmobrunfeldt/squint/actions?query=branch%3Amain)
[](https://npmjs.org/package/squint-cli)
# Squint
> Makes visual reviews of web app releases easy.

`squint compare https://prod.myapp.com https://beta.myapp.com` uses Puppeteer to:
* automatically crawl all url paths from the beta version *(see [this issue](https://github.com/kimmobrunfeldt/squint/issues/2))*
* take screenshots of each page from prod and beta versions of the app
* output all diff images for pages that had visual differencesThat's the main intended use case. The diffs will likely
have false positives due to async loading, animations, and different data.
That's ok, the main intention is not to be a full solution, but rather a light-weight
alternative.For most production setups, I'd recommend using [Percy](https://percy.io/) instead.
That said, CLI flags have been designed customization in mind: you can for example run
custom JS code before Puppeteer takes a screenshot.**Goodies:**
* [Puppeteer](https://github.com/puppeteer/puppeteer) under the hood
* Smart defaults but [highly configurable](#usage).The goal is to provide most convenience flags via CLI, but allow flexible JS options for advanced tricks.
* Supports [connecting to your local Chrome](#connect-to-a-chrome-session), with its existing logins and sessions. No need to deal with cookies in code.
* Tested on all platforms: macOS, Windows, and Linux
## Known limitations
The path structure needs to be 1-to-1 match between the two sites. If you have preview builds for example under
`https://prod.myapp.com/previews/123/...`, this won't work automatically. The workaround is to use a [proxy](https://www.npmjs.com/package/http-proxy-cli):```bash
http-proxy -p 8080 https://prod.myapp.com/previews/123/ &
PID=$!
squint compare https://prod.myapp.com/ http://localhost:8080kill $PID
```## Install
`npm i -g squint-cli`
## Usage
*Auto-generated*
```bash
EXAMPLESCompare current production to beta. The whole site is automatically crawled.
$ squint compare https://example.com https://beta.example.comCrawl all paths from beta site and pipe output to a file. The crawler only follows site-internal links.
$ squint crawl https://beta.example.com > paths.txtGet screenshot of a page.
$ squint screenshot https://beta.example.comGet screenshot of a single element in a page.
$ squint screenshot --selector 'div' https://beta.example.comCompare current production to beta, but use an existing file of paths.
$ squint compare --paths-file paths.txt https://example.com https://beta.example.comCompare a single page.
$ squint compare --single-page https://example.com/about https://beta.example.com/aboutCompare a single element with a selector.
$ squint compare --selector '#logo' https://example.com https://beta.example.comCompare a single element, but use JS to dig an element from the page. (page: Puppeteer.Page) => HTMLElement
$ squint compare --selector-js '(page) => page.$("#logo")' https://example.com https://beta.example.comCOMMON OPTIONS
--help Shows this help message
--puppeteer-launch-mode Options: launch, connect. Default: launch
--puppeteer-launch-options Puppeteer .launch or .connect options in JS. Default: {"headless":true}
--puppeteer-page-pool-max Maximum pages to use at the same time with Puppeteer. Default: 10
--include-hash When enabled, URL hashes are not ignored when crawling. Default: false
--include-search-query When enabled, URL search queries are not ignored when crawling. Default: false
--should-visit Custom JS function that can limit which links the crawler follows.
This is an AND filter on top of all other filters.
(
urlToVisit: url.URL,
hrefDetails: { currentUrl: string, href: string },
visited: Set,
config: Config
) => boolean
--trailing-slash-mode Options: preserve, remove, add. Default: preserveCOMPARE & SCREENSHOT
-w --width Viewport width for Puppeteer. Default: 1280
-h --height Viewport height for Puppeteer. Default: 800
--paths-file File of URL paths. One path per line.
--selector Takes screenshot from a single element. Selector for document.querySelector.
page.waitForSelector is called to ensure the element is visible.
--selector-js Takes screenshot from a single element. Selector as JS function that digs an element.
(page: Puppeteer.Page) => HTMLElement
--screenshot-options Puppeteer .screenshot options in JS. Overrides other options.
--after-goto Custom JS function that will be run after Puppeteer page.goto has been called.
(page: Puppeteer.Page) => Promise
--after-page Custom JS function that will be run after Puppeteer page has been created.
(page: Puppeteer.Page) => PromiseCOMPARE
--out-dir Output directory for images. Default: .squint
--single-page Disable automatic crawling. Only take a screenshot from single page.
-o --out-file Relevant in only in single-page mode. Output file for the diff image.
--save-all Saves all diff image files, even if there are zero differences.SCREENSHOT
-o --out-file Output file for the screenshot
CRAWL
--max-depth Maximum depth of links to follow. Default: Infinity
```
## Tips & tricks
Got a trick? Submit a PR!
### Increase Puppeteer timeouts
```bash
squint screenshot https://github.com/kimmobrunfeldt/squint --after-page "async (page) => page.setDefaultTimeout(60000)"
```You can also use `page.setDefaultNavigationTimeout(60000)` to only change navigation timeouts.
### Interact with page before screenshot
Click "I agree" button to hide ToS popup before taking a screenshot. *Beware of character escaping, it's fragile.*
```bash
squint screenshot https://google.com --puppeteer-launch-options '{ headless: false }' --after-goto 'async (page) => {
const [button] = await page.$x(`//button[contains(., "I agree")]`);
await button.click();
}'
```### Disable full page screenshot
Take screenshot from the current viewport:
```bash
squint screenshot https://github.com/kimmobrunfeldt/squint --screenshot-options '{ fullPage: false }';
```### Enable very verbose Puppeteer logging
```bash
DEBUG="puppeteer:* squint screenshot https://example.com
```### Disable headless mode
**Warning:** It seems that Puppeteer element screenshot works differently when running with `headless: false`. Use with caution!
```bash
squint screenshot --puppeteer-launch-options '{ headless: false }' https://example.com
```### Connect to a Chrome session
*This way you can reuse existing sessions and logins. No need to do difficult setup with cookies.*
1. Close your Chrome process (unless you already have remote debugging enabled).
2. Launch Chrome with a remote debugger enabledIn macOS: `/Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome --remote-debugging-port=9222`
3. `squint screenshot --puppeteer-launch-mode connect --puppeteer-launch-options '{ browserURL: "http://localhost:9222" }' https://example.com`
### Customize crawler
`--should-visit` can be useful if your page has a ton of blog posts:
```bash
squint crawl https://mysite.com --should-visit '(urlToVisit, hrefDetails, visited) => {
// Only visit 2 blog posts at max, assuming your site uses structure: /blog/posts/:id
const isBlogPost = (url) => url.includes("/blog/posts/");if (!isBlogPost(urlToVisit.toString())) {
// Visit if something else than blog post
return true;
}// If the visited list has 0 or 1 visits to a post,
// we should still visit one post.
return [...visited].filter(url => isBlogPost(url)).length <= 1;
}'
````urlToVisit` is a [WHATWG URL](https://nodejs.org/api/url.html#url_new_url_input_base) object.
The flag also works for `compare` command.### Keep crawler in specific parts of a site
Start crawling from a nested path, and use `--should-visit` to limit crawling.
```bash
squint crawl https://github.com/kimmobrunfeldt/squint/ --should-visit '(urlToVisit) => {
const isTree = urlToVisit.pathname.startsWith("/kimmobrunfeldt/squint/tree/main");
const isBlob = urlToVisit.pathname.startsWith("/kimmobrunfeldt/squint/blob/main");
return isTree || isBlob;
}'
```### Debugging JS arguments
You can use regular JS console.log for the incoming parameters, for example for `--should-visit`:
```bash
squint crawl https://myapp.com --should-visit '(...args) => console.log(...args) || true'
```### Disable headless mode
```bash
squint screenshot --puppeteer-launch-options '{ headless: false }' https://example.com
```## Maintenance tasks
### Debugging tests
```
DEBUG_TESTS=true npm test
```There's also `DEBUG_PUPPETEER=true` that launches Chrome with the UI visible. It seems that Puppeteer element screenshot works differently when running with `headless: false`. Use with caution!
### Generating baseline screenshots for tests
*Make sure the images are small because they are stored in git.*
Run `bash tools/populate-test-data.sh` to re-generate PNG images for test cases.
These images are the baseline, and considered to be correct results.### Making a new release
```
bash release.sh
```