我正在使用以下功能进行滚动。它适用于除一个页面之外的所有网页。列表较长的网页无法正常工作。请提出另一种方法
function Common() {
this.scrollPage = function (element) {
browser.executeScript("arguments[0].scrollIntoView();", element)
.then(function () {
})
}
}
答案 0 :(得分:0)
类似于您尝试的代码的代码对我有用。试试这个:
return browser.executeScript('arguments[0].scrollIntoView(true)', element.getWebElement());