得到以下错误:
java.lang.NoSuchMethodError: com.google.common.base.Preconditions.checkState(ZLjava/lang/String;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)V
运行时
System.setProperty("webdriver.chrome.driver", "/ocs/browserDrivers/chromedriver.exe");
//ChromeOptions chromeOptions = new ChromeOptions();
//chromeOptions.addArguments("start-maximized");
driver = new ChromeDriver();
升级到 selenium 3.14 和 chromedriver 2.42.不是 maven 项目
Upgraded to selenium 3.14 and chromedriver 2.42.Not a maven project
这个错误信息...
java.lang.NoSuchMethodError: com.google.common.base.Preconditions.checkState(ZLjava/lang/String;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)V
...暗示执行该行时出现错误:
...implies that there was an error raised while executing the line:
System.setProperty("webdriver.chrome.driver", "/ocs/browserDrivers/chromedriver.exe");
您的主要问题是 WebDriver 二进制类型与底层操作系统之间的不兼容性.
Your main issue is the incompatibility between the WebDriver binary type and the underlying Operating System.
您需要从 WebDriver 二进制文件" rel="nofollow noreferrer">chromedriver.storage 为您的程序如下:
You need download, extract and use the right format of the WebDriver binary from chromedriver.storage for your program as follows:
Linux 操作系统:
Linux OS:
chromedriver_linux64.tar.gz 2018-09-13 19:30:37 3.85MB
MAC 操作系统:
MAC OS:
chromedriver_mac64.tar.gz 2018-09-13 18:14:11 5.75MB
Windows 操作系统:
Windows OS:
chromedriver_win32.zip 2018-09-13 21:11:33 3.42MB
如果您使用的是 MAC OS,那么 System.setProperty() 行将是:
If you are using MAC OS so the System.setProperty() line would be:
System.setProperty("webdriver.chrome.driver", "/ocs/browserDrivers/chromedriver"); //drop the extension (.exe) part
如果您使用的是 Windows 操作系统,那么 System.setProperty() 行将是:
If you are using Windows OS so the System.setProperty() line would be:
System.setProperty("webdriver.chrome.driver", "C:\path\to\chromedriver.exe"); //mention the absolute path
这篇关于NoSuchMethodError: com.google.common.base.Preconditions.checkState(ZLjava/lang/String;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)V的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!
如何检测 32 位 int 上的整数溢出?How can I detect integer overflow on 32 bits int?(如何检测 32 位 int 上的整数溢出?)
return 语句之前的局部变量,这有关系吗?Local variables before return statements, does it matter?(return 语句之前的局部变量,这有关系吗?)
如何将整数转换为整数?How to convert Integer to int?(如何将整数转换为整数?)
如何在给定范围内创建一个随机打乱数字的 intHow do I create an int array with randomly shuffled numbers in a given range(如何在给定范围内创建一个随机打乱数字的 int 数组)
java的行为不一致==Inconsistent behavior on java#39;s ==(java的行为不一致==)
为什么 Java 能够将 0xff000000 存储为 int?Why is Java able to store 0xff000000 as an int?(为什么 Java 能够将 0xff000000 存储为 int?)