为什么Selenium不能与InternetExplorer一起运行?

时间:2015-11-04 03:13:14

标签: selenium

我在Eclipse中编写,但它没有运行。

我不知道为什么。

import org.openqa.selenium.WebDriver;import org.openqa.selenium.ie.InternetExplorerDriver;
public class IEbrowser {
    public static void main(String[] args) {
        // TODO Auto-generated method stub
        WebDriver br = new InternetExplorerDriver();
        br.get("google.com");
    }    
}

2 个答案:

答案 0 :(得分:0)

你试图给路径提供路径吗?

In Scala, what does "view" do?

在程序中下载后,您需要提供完整的路径:

string path = @"c:\driver\";

WebDriver br = new InternetExplorerDriver(path);

答案 1 :(得分:0)

您必须设置ie驱动程序服务器的路径。

System.setProperty("webdriver.ie.driver","\path\to\IEDriverServer.exe");
WebDriver driver = new InternetExplorerDriver();

此外,selenium需要为所有区域设置相同的安全级别。

1.打开IE

2.转到工具 - >互联网选项 - >安全

3.将所有区域设置为相同的保护模式,启用或禁用无关紧要。

此外,您还需要将页面的缩放级别设置为100%。