[E2E] Visual Differing Tests with Puppeteer and PixelMatch
Take your end to end tests to the next level by comparing your current application's view with an already accepted screenshot. With the combination of running a live chromium browser, taking a screenshot and running a pixelmatch test, we are able to make sure our UI matches exactly as intended. We will make the test pass and then have it fail by adding an extra p tag to our App.js
const puppeteer = require('puppeteer') const devices = require('puppeteer/DeviceDescriptors') const iPhone = devices['iPhone 6'] const pixelTest = require('./diffImages.js') /* Setting up testing env, which is not important*/ let browser let page beforeAll(async () => { browser = await puppeteer.launch({ headless: false }) page = await browser.newPage() await page.goto('http://localhost:3000/') await page.emulate(iPhone) }) afterAll(() => { browser.close() }) /* Finish Setting up testing env */ /*Start testing*/ describe('screenshots are correct', () => { it('/index', async () => { const file = 'screenshot.png' await page.screenshot({ path: file }) return pixelTest.compareScreenshots(file) }) })
const pixelmatch = require('pixelmatch') const fs = require('fs') const PNG = require('pngjs').PNG exports.compareScreenshots = fileName => { return new Promise((resolve, reject) => { const doneReading = () => { expect(img1.width).toBe(img2.width) expect(img1.height).toBe(img2.height) const numDiffPixels = pixelmatch( img1.data, img2.data, null, img1.width, img1.height, { threshold: 0.1 } ) expect(numDiffPixels).toBe(0) resolve() } const img1 = fs.createReadStream('testScreenShot.png').pipe(new PNG()) const img2 = fs.createReadStream(fileName).pipe(new PNG()).on('parsed', doneReading) }) }
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· SQL Server 2025 AI相关能力初探
· Linux系列:如何用 C#调用 C方法造成内存泄露
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 阿里最新开源QwQ-32B,效果媲美deepseek-r1满血版,部署成本又又又降低了!
· Manus重磅发布:全球首款通用AI代理技术深度解析与实战指南
· 开源Multi-agent AI智能体框架aevatar.ai,欢迎大家贡献代码
· 被坑几百块钱后,我竟然真的恢复了删除的微信聊天记录!
· AI技术革命,工作效率10个最佳AI工具