zoukankan      html  css  js  c++  java
  • java+selenium3.0 运行时出的问题(system property)!

    按照之前的文章讲解,都已经搭建好了,可是在刚开始运行就报错了,代码和报错如下:

    WebDriver driver = new ChromeDriver();
    driver.get("http://www.baidu.com");

    错误如下:

    Exception in thread "main" java.lang.IllegalStateException: The path to the driver executable must be set by the webdriver.chrome.driver system property; for more information, see https://github.com/SeleniumHQ/selenium/wiki/ChromeDriver. The latest version can be downloaded from http://chromedriver.storage.googleapis.com/index.html

    注意看报错信息,这里往往就是一个新人和一个老手的区别所在。

    这里是说 驱动的路径必须要设置一下才可以使用(注意:system property)

    那么,我们针对三种浏览器的解决办法如下:

    按照顺序,Chrome、FirFox、IE:

    System.setProperty("webdriver.chrome.driver", "D:\fortest\drivers\chromedriver.exe");
    webDriver = new ChromeDriver();
    System.setProperty("webdriver.gecko.driver", "D:\fortest\drivers\geckodriver.exe");
    webDriver = new FirefoxDriver();
    System.setProperty("webdriver.ie.driver", "D:\fortest\drivers\IEDriverServer.exe");
    webDriver = new InternetExplorerDriver();

    OK,再运行解决!

  • 相关阅读:
    列表、元组、字典、集合类型及其内置方法
    Python数字类型及字符串类型的内置方法 ##
    Python之流程控制
    前端混合
    数据库
    oracle 11g 安装过程
    SQLAlchemy
    pipreqs快速生成python项目所需的依赖
    llinux基本操作
    linux简介
  • 原文地址:https://www.cnblogs.com/iceb/p/7114955.html
Copyright © 2011-2022 走看看