向下滚动代码不适用于网页

时间:2019-08-07 05:30:26

标签: selenium cucumber

我正在尝试向下滚动网页。这是一个鸦片黄瓜框架。

我尝试过

window.scrollTo(0, document.body.scrollHeight)

window.scrollBy(0,1000)

在其他站点上,它正在运行,但对我而言,它不起作用。

@Given("^I scrolldown$")
public void i_scrolldown() throws Throwable{
    ((JavascriptExecutor)this.settings
        .getDriver()).executeScript("scrollBy(0,document.body.scrollHeight)");
}

我希望它可以滚动到页面底部。

0 个答案:

没有答案