Actualmente, estoy trabajando en WebDriver para invocar el navegador IE para ejecutar las pruebas. Pero recibí un NoSuchElementException
cuando traté de ejecutar el sencillo ejemplo a continuación.NoSuchElementException se ha producido durante la implementación de InternetExplorerDriver en Selenium WebDriver
Sin embargo, el código funcionó bien si utilicé Chrome Driver o el controlador de Firefox. Cualquier idea o pensamiento sería apreciado.
Jar: selenium-server-standalone-2.5.0.jar
Código:
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.ie.InternetExplorerDriver;
import org.openqa.selenium.remote.DesiredCapabilities;
public static void main(String[] args) throws InterruptedException {
DesiredCapabilities ieCapabilities = DesiredCapabilities.internetExplorer();
ieCapabilities.setCapability(InternetExplorerDriver.INTRODUCE_FLAKINESS_BY_IGNORING_SECURITY_DOMAINS, true);
WebDriver driver = new InternetExplorerDriver(ieCapabilities);
driver.get("www.google.com");
driver.findElement(By.name("q"));
}
mensaje de error:
Exception in thread "main" org.openqa.selenium.NoSuchElementException: Unable to find element with name == q (WARNING: The server did not provide any stacktrace information)
For documentation on this error, please visit: http://seleniumhq.org/exceptions/no_such_element.html
Build info: version: '2.5.0', revision: '13516', time: '2011-08-23 18:29:57'
System info: os.name: 'Windows 7', os.arch: 'x86', os.version: '6.1', java.version: '1.6.0_25'
Driver info: driver.version: RemoteWebDriver
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)
at java.lang.reflect.Constructor.newInstance(Unknown Source)
at org.openqa.selenium.remote.ErrorHandler.createThrowable(ErrorHandler.java:131)
at org.openqa.selenium.remote.ErrorHandler.throwIfResponseFailed(ErrorHandler.java:105)
at org.openqa.selenium.remote.RemoteWebDriver.execute(RemoteWebDriver.java:409)
at org.openqa.selenium.remote.RemoteWebDriver.findElement(RemoteWebDriver.java:197)
at org.openqa.selenium.remote.RemoteWebDriver.findElementByName(RemoteWebDriver.java:246)
at org.openqa.selenium.By$ByName.findElement(By.java:298)
at org.openqa.selenium.remote.RemoteWebDriver.findElement(RemoteWebDriver.java:189)
at lib.WebDriver2.main(WebDriver2.java:14)
Ese mensaje stacktrace/error parece incompleto, ¿estás seguro de que está completo? – Jasper
Hola, actualicé el mensaje de error :) El navegador IE se abrió y se dirigió a la página de google. Pero falló, ya que trató de encontrar el elemento "q" – user836112
mismo problema aquí. Estoy usando un sistema de 64 bits, pero con un jvm de 32 bits, entonces el controlador también tiene 32 bits. Nada de lo enumerado a continuación ayudó a –