I am new to RSelenium
, and am having trouble with the following example from the "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!
I get the following error:
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
Any ideas? I am running Firefox on Mac OS X with R version 3.1.1 (2014-07-10). EDIT: Also does not work on R version 3.1.3 (2015-03-09).