我有段代码是
```
System.setProperty("webdriver.gecko.driver", new File(new File(this.getClass().getResource("/").getPath()).getParent()).getParent() + "\\tools\\geckodriver.exe");//设置 geckodriver 所在路径
System.out.println(System.getProperty("webdriver.gecko.driver"));
FirefoxProfile profile = new FirefoxProfile();
```
然后跑到第三句会报 [ Exception in thread "main" java.lang.NoSuchMethodError: com.google.common.base.Preconditions.checkArgument(ZLjava/lang/String;Ljava/lang/Object;)V ] 这个错误,请问有人遇到过吗
```
System.setProperty("webdriver.gecko.driver", new File(new File(this.getClass().getResource("/").getPath()).getParent()).getParent() + "\\tools\\geckodriver.exe");//设置 geckodriver 所在路径
System.out.println(System.getProperty("webdriver.gecko.driver"));
FirefoxProfile profile = new FirefoxProfile();
```
然后跑到第三句会报 [ Exception in thread "main" java.lang.NoSuchMethodError: com.google.common.base.Preconditions.checkArgument(ZLjava/lang/String;Ljava/lang/Object;)V ] 这个错误,请问有人遇到过吗