跳至主要内容

测试输出

信息

此 WebdriverIO 演示站点已用于示例图像输出。

enableLayoutTesting

这可以在服务选项以及方法级别设置。

// wdio.conf.(js|ts)
export const config = {
// ...
// =====
// Setup
// =====
services: [
[
'visual',
{
enableLayoutTesting: true
}
]
]
// ...
}

服务选项的图像输出等于方法,请参见下文。

图像输出

await browser.saveElement(".features_vqN4", "example-element-tag", {enableLayoutTesting: true})
// Or
await browser.checkElement(".features_vqN4", "example-element-tag", {enableLayoutTesting: true})

saveElement Desktop

save(Screen/Element/FullPageScreen)

控制台输出

save(Screen/Element/FullPageScreen)方法在执行后将提供以下信息

const saveResult = await browser.saveFullPageScreen({ ... })
console.log(saveResults)
/**
* {
* // The device pixel ratio of the instance that has run
* devicePixelRatio: 1,
* // The formatted filename, this depends on the options `formatImageName`
* fileName: "examplePage-chrome-latest-1366x768.png",
* // The path where the actual screenshot file can be found
* path: "/path/to/project/.tmp/actual/desktop_chrome",
* };
*/

图像输出

await browser.saveElement(".hero__title-logo", "example-element-tag")

saveElement Desktop

check(Screen/Element/FullPageScreen)

控制台输出

默认情况下,check(Screen/Element/FullPageScreen)方法仅提供不匹配百分比,例如1.23,但当插件具有选项returnAllCompareData: true时,在方法执行后将提供以下信息

const checkResult = await browser.checkFullPageScreen({ ... })
console.log(checkResult)
/**
* {
* // The formatted filename, this depends on the options `formatImageName`
* fileName: "examplePage-chrome-headless-latest-1366x768.png",
* folders: {
* // The actual folder and the file name
* actual: "/path/to/project/.tmp/actual/desktop_chrome/examplePage-chrome-headless-latest-1366x768.png",
* // The baseline folder and the file name
* baseline:
* "/path/to/project/localBaseline/desktop_chrome/examplePage-chrome-headless-latest-1366x768.png",
* // This following folder is optional and only if there is a mismatch
* // The folder that holds the diffs and the file name
* diff: "/path/to/project/.tmp/diff/desktop_chrome/examplePage-chrome-headless-latest-1366x768.png",
* },
* // The mismatch percentage
* misMatchPercentage: 2.34,
* };
*/

图像输出

信息

下面的图像仅显示运行检查命令导致的差异。仅显示浏览器中的差异,但 Android 和 iOS 的输出相同。

await browser.checkElement("#__docusaurus_skipToContent_fallback > header > div > div.buttons_pzbO > a:nth-child(1)", "example-element-tag")
信息

按钮文本已从Get Started更改为Getting Started!,并被检测为更改。

Button Check Result

屏蔽区域

在这里,您将找到 Android NativeWebScreenshot 和 iOS 中屏蔽区域的示例输出,其中状态+地址和工具栏被屏蔽。

Blockouts Android

欢迎!我如何帮助您?

WebdriverIO AI Copilot