滚动
在浏览器视口中滚动。请注意,x
和 y
坐标相对于当前滚动位置,因此 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
});