7

我正在尝试在 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. 我也试过idand 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>
4

2 回答 2

1

对于 IE 7 selenium server 2.20 或以下版本应该试一试。最近我们遇到了类似的问题,其中很少有命令在 IE 10 中有效,但在 IE 8 中无效。当我们降级到 selenium 2.20(一一尝试)时,它在 IE 8 和 2.20 中运行良好。如果您使用的是集线器,请确保运行 selenium 服务器的节点运行的是较旧的 selenium 版本(<2.20)。

于 2013-11-26T08:53:49.450 回答
1

好的 - 根据评论,您指定您没有针对集线器运行,但是,在您的代码中 - 您指向一个集线器。我认为这与此有关。

更改此代码块:

try {
    driver = new RemoteWebDriver(new URL("http://localhost:4444/wd/hub"), capabilities);
} catch (MalformedURLException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
}

至:

driver = new IEDriver(capabilities);

RemoteWebDriver(new URL("http://localhost:4444/wd/hub")这里的这篇文章将您的测试指向某个远程驱动程序,这意味着“连接到集线器的硒节点”。您已经确认您没有使用集线器,因此此答案应该可以解决您的问题。

细分:

RemoteWebDriver() = Selenium Node that is connected to a hub
ChromeDriver|IEDriver|FirefoxDriver = Local browser session
于 2013-11-25T16:16:00.440 回答