我是新来的RSelenium
,并且在使用“Introduction Vignette”中的以下示例时遇到问题:
remDr$navigate("http://www.r-project.org") # Works
webElem <- remDr$findElement("partial link text", "download R") # Works
webElem$getElementText() # Works
remDr$mouseMoveToLocation(webElement = webElem) # DOES NOT Work!
我收到以下错误:
Error: Summary: InvalidElementState
Detail: An element command could not be completed because the element is in an invalid state (e.g. attempting to click a disabled element).
class: org.openqa.selenium.InvalidElementStateException
有任何想法吗?我正在使用 R 版本 3.1.1 (2014-07-10) 在 Mac OS X 上运行 Firefox。编辑:也不适用于 R 版本 3.1.3 (2015-03-09)。