我正在尝试在 IE7 上使用 Selenium 和Windows XP 上的InternetExplorerDriver。此代码在兼容模式下(在 W7 上)适用于 Firefox、IE9 甚至 IE9。
HTML:
<HTML xml:lang="fr" xmlns="http://www.w3.org/1999/xhtml"><HEAD><TITLE></TITLE></HEAD>
<BODY>
<div id="login">chicken</div>
</BODY>
建筑司机:
private static WebDriver getIE7WebDriver() {
WebDriver driver = null;
DesiredCapabilities capabilities;
capabilities= DesiredCapabilities.internetExplorer();
capabilities.setCapability(InternetExplorerDriver.FORCE_CREATE_PROCESS, false);
capabilities.setCapability(InternetExplorerDriver.REQUIRE_WINDOW_FOCUS,true);
capabilities.setCapability(CapabilityType.ACCEPT_SSL_CERTS,true);
capabilities.setCapability(CapabilityType.BROWSER_NAME, "internet explorer");
capabilities.setCapability(CapabilityType.PLATFORM, "WINDOWS");
capabilities.setCapability(CapabilityType.VERSION, "7");
System.setProperty("webdriver.ie.driver",(new File("C:\\selenium\\IEDriverServer.exe")).getAbsolutePath());
try {
driver = new RemoteWebDriver(new URL("http://localhost:4444/wd/hub"), capabilities);
} catch (MalformedURLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return driver;
}
并试图让我的#index
元素:
log.info(driver.getPageSource());
try {
String value = driver.findElement(By.cssSelector("#login")).toString();
log.info(value);
}
catch ( Exception e ) {
log.error(e.toString());
}
页面源已正确获取,但每当我尝试访问一个元素时,我都会得到一个org.openqa.selenium.NoSuchElementException
. 我也试过id
and XPath
。
知道出了什么问题吗?
PS:在Windows XP中,IE没有安全模式。
编辑:driver.getPageSource()
返回:
<HTML xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr"><HEAD><TITLE></TITLE></HEAD>
<BODY>
<DIV id=login>chicken</DIV></BODY></HTML>