在Linux服务器上运行Selenium脚本时面对Chrome驱动程序问题



我在Linux服务器上运行硒脚本时面临问题。问题是关于Chrome驱动程序的。

尝试在Linux服务器上运行硒脚本

webdriver驱动程序中面对问题= new Chromedriver((步骤。

这应该解决您的问题:https://stackoverflow.com/a/49022224

您需要下载Chrome驱动程序并设置属性:

System.setProperty("webdriver.chrome.driver", "C:\path\to\chromedriver.exe");
WebDriver driver = new ChromeDriver();

从这里下载Chrome驱动程序:https://sites.google.com/a/chromium.org/chromedriver/

相关内容

  • 没有找到相关文章

最新更新