滚动,直到特定点或元素可见页面

时间:2018-02-25 22:45:44

标签: selenium rselenium

我有一个按钮,我使用click元素按下它。这是一个显示更多按钮。

webElem$clickElement()

然而,在某些页面中,r selenium会出现此错误:

Selenium message:unknown error: Element <button class = "mybutton">...</button> is not clickable at point (462, 24). Other element would receive the click: <div id="etype">...</div>

是否有任何想法是否可以让RSelenium转到特定点或是否有其他选项而非点击?或者通常滚动直到元素可用?

1 个答案:

答案 0 :(得分:1)

尝试使用

remDr$mouseMoveToLocation(webElement = webElem)

webElem$clickElement()之前

。如果元素webElem不在屏幕上,则您无法单击它。您必须使用方法mouseMoveToLocation将其移动到视图中。