java java chromedriver报错NoSuchMethodError:com.google.common.base.Preconditions.checkState升级Guava就可以了

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java java chromedriver报错NoSuchMethodError:com.google.common.base.Preconditions.checkState升级Guava就可以了相关的知识,希望对你有一定的参考价值。

public static void demo1() {
    String profile = profile_rileguile;
    System.setProperty("webdriver.chrome.driver", chromedriverpath); // 此处PATH替换为你的chromedriver所在路径
    ChromeOptions options = new ChromeOptions();
    options.addArguments("user-data-dir=" + profile);
    options.addArguments("--start-maximized");

    WebDriver webDriver = new ChromeDriver(options);
    webDriver.get("https://bihu.com/");
}

以上是关于java java chromedriver报错NoSuchMethodError:com.google.common.base.Preconditions.checkState升级Guava就可以了的主要内容,如果未能解决你的问题,请参考以下文章

使用chromedriver时报错

vue-cli创建项目报错"ChromeDriver binary is unavailable"

在 Selenium / Java 中杀死 chromedriver 进程

java chromedriver

Java爬虫Selenium+Java+ChromeDriver

如何使用 Java + ChromeDriver 在 AWS Lambda 中运行 Google Chrome 进行 Selenium 测试