Selenium 2.0 / WebDriver clickAt() method unsupported
Posted
by
Muers
on Stack Overflow
See other posts from Stack Overflow
or by Muers
Published on 2010-11-29T16:08:55Z
Indexed on
2011/01/11
0:53 UTC
Read the original article
Hit count: 207
Selenium clickAt() function is throwing "Unsupported" exception while using with WebDriver (WebDriverBackedSelenium or just Selenium 2.x using ChromeDriver).
Is there any way to use this Selenium function via WebDriver?
Adding some code for context ...
ChromeDriver driver = new ChromeDriver();
driver.findElement(By.id("someID")).clickAt("25, 25");
.clickAt()
method isn't even recognized ... however, using the WebDriverBackedSelenium is what provides the Unhandled exception.
© Stack Overflow or respective owner