小编典典

为什么我们需要为Chrome和IE浏览器而不是Firefox浏览器设置系统属性

selenium

对于Chrome,

public class Chrome {

  public static void main(String[] args) {

        System.setProperty("webdriver.chrome.driver", "E://chromedriver.exe");
        WebDriver driver = new ChromeDriver();              
        driver.get("http://www.google.com");

    }

}

对于Firefox,

public class Firefox {

      public static void main(String[] args) {

            WebDriver driver = new FirefoxDriver();              
            driver.get("http://www.google.com");

        }

    }

为什么我们需要system.setProperty为Chrome和IE 指定?


阅读 363

收藏
2020-06-26

共1个答案

小编典典

我也有同样的问题,但是经过挖掘,我发现,

WebDriver使用本机浏览器方法。Selenium提供了用于Firefox的内置驱动程序,但不提供其他浏览器的内置驱动程序。所有驱动程序(Chrome驱动程序,IE驱动程序等)都是基于每个浏览器使用的特殊JS引擎构建的。

Selenium WebDriver与Mozilla Firefox搭配使用非常好,因为它具有内置的驱动程序服务器。但是对于Internet
Explorer和Google Chrome而言并非如此。Firefox是最传统的浏览器,因此Selenium
WebDriver不需要在启动浏览器之前设置任何其他实用程序。Selenium程序包会自动引用firefox.exe的默认位置,因此用户无需设置任何其他属性。

如果您获得了“驱动程序可执行文件的路径,则必须由webdriver设置。即。驱动程序系统属性”错误或类似的Chrome等效字词,这意味着您需要在浏览器上安装驱动程序服务器。驱动程序服务器管理浏览器和Selenium
Wire协议之间的调用。

InternetExplorerDriver是一个实现WebDriver有线协议的独立服务器

同样,Google
Chrome浏览器没有内置的服务器,因此您需要使用Chrome驱动程序服务器将Selenium代码传递到浏览器。您可以下载Chrome驱动程序服务器。

这里成立。

2020-06-26