快照断言
Playwright 提供方法来比较页面和元素快照与存储在文件中的预期值。
expect(screenshot).toMatchSnapshot('landing-page.png');
方法
toMatchSnapshot(name)
添加于:v1.22注意
要比较快照,请改用 expect(page).toHaveScreenshot()。
确保传入的值(字符串或缓冲区)与存储在测试快照目录中的预期快照匹配。
用法
// Basic usage.
expect(await page.screenshot()).toMatchSnapshot('landing-page.png');
// Pass options to customize the snapshot comparison and have a generated name.
expect(await page.screenshot()).toMatchSnapshot('landing-page.png', {
maxDiffPixels: 27, // allow no more than 27 different pixels.
});
// Configure image matching threshold.
expect(await page.screenshot()).toMatchSnapshot('landing-page.png', { threshold: 0.3 });
// Bring some structure to your snapshot files by passing file path segments.
expect(await page.screenshot()).toMatchSnapshot(['landing', 'step2.png']);
expect(await page.screenshot()).toMatchSnapshot(['landing', 'step3.png']);
了解有关 视觉比较 的更多信息。
请注意,匹配快照仅适用于 Playwright 测试运行器。
参数
-
快照名称。
-
options
对象 (可选)
toMatchSnapshot()
添加于:v1.22注意
要比较快照,请改用 expect(page).toHaveScreenshot()。
确保传入的值(字符串或缓冲区)与存储在测试快照目录中的预期快照匹配。
用法
// Basic usage and the file name is derived from the test name.
expect(await page.screenshot()).toMatchSnapshot();
// Pass options to customize the snapshot comparison and have a generated name.
expect(await page.screenshot()).toMatchSnapshot({
maxDiffPixels: 27, // allow no more than 27 different pixels.
});
// Configure image matching threshold and snapshot name.
expect(await page.screenshot()).toMatchSnapshot({
name: 'landing-page.png',
threshold: 0.3,
});
了解有关 视觉比较 的更多信息。
请注意,匹配快照仅适用于 Playwright 测试运行器。
参数