这是错误:
[11762:11762:0801/141204:错误:url_pattern_set.cc(240)]网址无效 pattern:chrome:// print / * getrlimit(RLIMIT_NOFILE)失败 [11762:11886:0801/141205:错误:get_updates_processor.cc(243)] GetClpdates期间PostClientToServerMessage()失败 getrlimit(RLIMIT_NOFILE)失败
代码:
public class FirstTestCase {
public static void main(String[] args) throws InterruptedException {
// TODO Auto-generated method stub
System.setProperty("webdriver.chrome.driver", "/usr/bin/google-chrome");
WebDriver driver = new ChromeDriver();
String URL = "mail.google.com";;
答案 0 :(得分:1)
您提供的代码有两个问题: -
您正在设置webdriver.chrome.driver
已安装的Chrome位置错误。您需要从here下载最新的Chrome驱动程序zip
并将其放在您计算机的任意位置,然后将zip
提取并将找到的chromedriver
设置为带有变量{{的系统属性1}}。
您提供的网址错误,您应提供webdriver.chrome.driver
或http://
的网址。
所以工作示例如下: -
https://
希望它有效.. :)