有没有办法使用selenium for Java将页面滚动到当前的webElement?
我想点击元素,但当元素向下或向上时,它会点击另一个地方 - 所以我想将页面滚动到当前元素。
我搜索但没有找到任何解决方案。
任何帮助 - 提前谢谢!
答案 0 :(得分:0)
您需要在该ID上查找id和fire click事件。 我想点击我的页面上的下一个按钮,其id =" nextButton" 在页面对象中,这是我声明的方式。这样你就不用担心职位在哪里了 例如:
@FindBy(how = How.ID, using = "nextButton")
private WebElement next;
更多信息 http://reddymails.blogspot.com/2011/09/selenium-2-or-webdriver-for-automation.html