跳至主要内容

滚动

在浏览器视口中滚动。请注意,xy 坐标相对于当前滚动位置,因此 browser.scroll(0, 0) 是一个无效操作。

用法
browser.scroll(x, y)
参数
名称类型详情
x
可选
数字水平滚动位置(默认值:0
y
可选
数字垂直滚动位置(默认值:0
示例
scroll.js
it('should demonstrate the scroll command', async () => {
await browser.url('https://webdriverio.node.org.cn')

console.log(await browser.execute(() => window.scrollY)) // returns 0
await browser.scroll(0, 200)
console.log(await browser.execute(() => window.scrollY)) // returns 200
});

欢迎!我如何帮助您?

WebdriverIO AI Copilot