gpt4 book ai didi

java - 如何使用 chrome 选项启动 chromebrowser?

转载 作者:行者123 更新时间:2023-12-01 17:47:41 25 4
gpt4 key购买 nike

不使用 System.setProperty

System.setProperty("webdriver.chrome.driver", "F:\\新文件夹\\chromedriver.exe");

我尝试使用 chrome 选项和以下代码启动 chrome 浏览器:

ChromeOptions options = new ChromeOptions();
options.setAcceptInsecureCerts(true);
options.addArguments("disable-infobars");

driver = new ChromeDriver(options);

我已经在系统变量中设置了 chromedriver 路径。它不工作可以解决这个问题。

Path to My Chrome Driver

最佳答案

您能否尝试将以下代码设置为 Binary 并设置为 Options 来启动 chromeBrowser:

ChromeOptions options = new ChromeOptions(); 
options.setBinary("C:\\Users\\raheela.aslam\\AppData\\Local\\Google\\Chrome\\Application\\chrome.exe"); //Path where the Chrome.exe exist in your machine.
System.setProperty("webdriver.chrome.driver", "C:\\chrome_driver\\chromedriver.exe");
driver = new ChromeDriver(options);

关于java - 如何使用 chrome 选项启动 chromebrowser?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53257059/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com