Mac下安装Chromedriver.exe
Posted MeilingJ
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Mac下安装Chromedriver.exe相关的知识,希望对你有一定的参考价值。
Step 1: 打开https://sites.google.com/a/chromium.org/chromedriver/downloads,找到最新版本的chromedriver.exe;
Step 2: Mac下只有chromedriver_mac32.zip,无论是32的Mac还是64的Mac都下这个版本就行;
Step 3: 解压包,并添加后缀.exe;
Step 4: 打开Finder,在Go menu选择Go To Folder,输入/usr/bin以打开该路径;
Step 5: 将chromedriver.exe放在/usr/bin下面即可.
如果使用Chromedriver还报如下异常:
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
那需要在Java程序中添加:
System.setProperty("webdriver.chrome.driver","/usr/bin/chromedriver.exe");
WebDriver driver = new ChromeDriver();
以上是关于Mac下安装Chromedriver.exe的主要内容,如果未能解决你的问题,请参考以下文章