[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)

    })
}
复制代码

 

https://www.npmjs.com/package/pixelmatch

posted @   Zhentiw  阅读(439)  评论(0编辑  收藏  举报
编辑推荐:
· 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工具
点击右上角即可分享
微信分享提示