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,再运行解决!

  • 相关阅读:
    统计脚本代码行数
    expr算术运算
    lsof命令
    测试当前机器可以创建多少线程
    守护进程写日志
    文件描述符fd,struct files_struct
    linux查看反汇编
    信号补充
    Windows10获取VS管理员权限总是很烦人
    asp.net中的Filter类型其实是被当作单例的
  • 原文地址:https://www.cnblogs.com/iceb/p/7114955.html
Copyright © 2011-2022 走看看