gpt4 book ai didi

javascript - 当我从自动化调用时,Js 页面未在 Chrome 中加载

转载 作者:行者123 更新时间:2023-12-02 03:43:04 24 4
gpt4 key购买 nike

当任何 JS 页面出现时,Chrome drivers 会在控制台中抛出以下错误:

Uncaught ReferenceError: $ is not defined.

private WebDriver getChromeDriver() throws IOException {
DesiredCapabilities capabilities = DesiredCapabilities.chrome();
ChromeDriverService service = new ChromeDriverService.Builder()
.usingDriverExecutable(new File("./src/main/resources/driver/chromedriver.exe")).usingAnyFreePort().build();
ChromeOptions options = new ChromeOptions();
options.merge(capabilities);
options.setExperimentalOption("useAutomationExtension", false);
options.addArguments("start-maximized");
ChromeDriver driver = new ChromeDriver(service, options);
return driver;
}

我需要在 Chrome 驱动程序中添加任何选项吗?

最佳答案

这是由于 chrome 浏览器实现的安全功能,即 chrome 不允许在本地加载外部文件。这可以通过“设置”选项进行一定程度的更改。

关于javascript - 当我从自动化调用时,Js 页面未在 Chrome 中加载,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56823751/

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