我正在测试像Paint这样的GWT + SMARTGWT应用程序,而我正试图使用Selenium Webdriver查找此Web应用程序的元素。我用来定位元素的方法是通过这些元素的相对XPath,但我目前面临的问题是这种方法在Chrome,Firefox和Edge等浏览器上正常工作,但在IE浏览器上却没有。我电脑上的IE版本是 11.1593.14393.0 。在IE浏览器中,这个相对XPath方法给出了TimeOutException。我给出了明确的等待:
wait.until(ExpectedConditions.elementToBeClickable(webelement));
IE浏览器无法找到该元素。我有时会为其他元素获得以下异常:
Exception in thread "main" org.openqa.selenium.InvalidSelectorException: Unable to locate an element with the xpath expression //img[contains(@src,'Insert XXX'] because of the following error:
Error: Bad token: ]
在此问题的故障排除解决方案中,我尝试在IE中启用/禁用所有级别的保护模式,但此方法不起作用。除此之外,我还尝试选中选项旁边的框 - " 允许活动内容在我的计算机上运行文件"但这种方法也无效。
我该怎么做才能解决我的问题?
这是我的代码。首先,我将点击位于应用程序顶部栏上的“插入”按钮,然后在单击“插入”按钮后,将启动一个窗口,我将单击“关闭”按钮。
public static void main(String[] args) throws InterruptedException {
System.setProperty("webdriver.ie.driver", "D:\\SELENIUM\\Drivers\\iedriverserver.exe");
WebDriver driver = new InternetExplorerDriver();
Thread.sleep(3000);
driver.get(baseURL);
WebDriverWait wait = new WebDriverWait(driver, 10);
final String InsertPath = "//img[contains(@src,'Insert XXXX')]";
final String closePath="//img[contains(@src,'close')]";
WebElement Insert = driver.findElement(By.xpath(InsertPath));
wait.until(ExpectedConditions.elementToBeClickable(Insert));
Thread.sleep(2000);
Insert.click();
WebElement close = driver.findElement(By.xpath(closePath));
wait.until(ExpectedConditions.elementToBeClickable(close));
Thread.sleep(3000);
close.click();
}
}
编辑:我还在我的代码中使用Javascript执行器查找元素,如下所示:
WebElement Insert = driver.findElement(By.xpath(InsertPath));
Thread.sleep(2000);
JavascriptExecutor jse = (JavascriptExecutor) driver;
jse.executeScript("arguments[0].click();", Insert);
可悲的是,这种方法也无法在IE浏览器中运行。
答案 0 :(得分:0)
因此,我能够使用Internet Explorer的最新驱动程序找到元素,并在我的代码中将以下所需功能提供给IE浏览器。
DesiredCapabilities ieCapabilities = DesiredCapabilities.internetExplorer();
ieCapabilities.setCapability("requireWindowFocus", true);
ieCapabilities.setCapability("unexpectedAlertBehaviour", "accept");
ieCapabilities.setCapability("ignoreProtectedModeSettings", true);
ieCapabilities.setCapability("disable-popup-blocking", true);
ieCapabilities.setCapability("enablePersistentHover", true);*/
System.setProperty("webdriver.ie.driver", "D:\\IEDriverServer.exe");
WebDriver driver = new InternetExplorerDriver(ieCapabilities);