selenium指定浏览器路径
2020/05/31
共 124 字
约 1 分钟
归档: 学习
第一次接触selenium是在玩Python,原来也有java版,这两天就玩起来了,在maven中添加依赖就可以用
<!-- https://mvnrepository.com/artifact/org.seleniumhq.selenium/selenium-java -->
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<version>3.141.59</version>
</dependency>
运行的时候遇到了这样的报错
Exception in thread "main" org.openqa.selenium.WebDriverException: unknown error: cannot find Chrome binary
没有找到浏览器,那就指定路径吧
ChromeOptions option = new ChromeOptions();
option.setBinary("H:/Cent/chrome.exe");
WebDriver webDriver = new ChromeDriver(option);
留言