我在开发一个使用 selenium 的应用程序。
- 操作系统:macOS
- 语言:Kotlin
- JDK:Java 18
但它失败了。
输出
Starting ChromeDriver 105.0.5195.19 (b9c217c128c16f53d12f9a02933fcfdec1bf49af-refs/branch-heads/5195@{#176}) on port 50362
Only local connections are allowed.
Please see https://chromedriver.chromium.org/security-considerations for suggestions on keeping ChromeDriver safe.
ChromeDriver was started successfully.
org.openqa.selenium.SessionNotCreatedException: Could not start a new session. Response code 500. Message: session not created: This version of ChromeDriver only supports Chrome version 105
Current browser version is 104.0.5112.79 with binary path /Applications/Google Chrome.app/Contents/MacOS/Google Chrome
Build info: version: '4.4.0', revision: 'e5c75ed026a'
System info: host: 'mymac.local', ip: '2400:2200:6f0:7919:347b:3223:3841:9545%en0', os.name: 'Mac OS X', os.arch: 'aarch64', os.version: '12.3', java.version: '18.0.2'
Driver info: org.openqa.selenium.chrome.ChromeDriver
Command: [null, newSession {capabilities=[Capabilities {browserName: chrome, goog:chromeOptions: {args: [], extensions: []}}], desiredCapabilities=Capabilities {browserName: chrome, goog:chromeOptions: {args: [], extensions: []}}}]
at org.openqa.selenium.remote.ProtocolHandshake.createSession(ProtocolHandshake.java:144)
......
build.gradle.kts
dependencies {
testImplementation(kotlin("test"))
implementation(compose.desktop.currentOs)
// Selenium
// https://mvnrepository.com/artifact/org.seleniumhq.selenium/selenium-java
implementation("org.seleniumhq.selenium:selenium-java:4.4.0")
// https://mvnrepository.com/artifact/org.seleniumhq.selenium/selenium-chrome-driver
implementation("org.seleniumhq.selenium:selenium-chrome-driver:4.4.0")
}
代码
fun launch() {
System.setProperty(
"webdriver.chrome.driver",
"/driver/path/chromedriver"
);
ChromeDriver();
}
Chrome驱动程序版本105.0.5195.19是我保存在/driver/path/chromedriver
的驱动程序之一。104.0.5112.79是我在macOS上安装的Chrome版本。
我必须使用Chromedriver版本104吗?或者有什么方法可以使用105版本的一个?
我不知道为什么当我设置webdriver.chrome.driver
时需要macOS上的Chrome版本。
5条答案
按热度按时间irtuqstp1#
你可以检查你当前的谷歌Chrome版本,如果不是105,你可以更新。
在我的情况是:
版本104.0.5112.102
或者另一个解决方案将是降级Chrome驱动程序
agxfikkp2#
你可以使用这个:
dependencies{ compile('org.seleniumhq.selenium:selenium-java:4.11.0')implementation group:'io.github. bonigarcia',名称:'webdrivermanager',版本:'5.5.2' }
xoshrz7s3#
webdrivermanager版本应该更新到最新版本
xjreopfe4#
我在Chrome 116版本中也遇到了同样的错误。我遵循的步骤:
1.在浏览器中键入最新版本的Chrome驱动程序
1.它将导航到https://chromedriver.chromium.org/downloads
ryevplcw5#
此错误消息...
...意味着ChromeDriver无法启动/产生新的 * 浏览上下文 *,即google-chrome会话。
您的主要问题是您正在使用的二进制文件版本之间的不兼容,如下所示:
支持Chrome版本105
因此,chromedriver=105.0 和 chrome=104.0 之间存在明显的不匹配
解决方案
确保:
同时确保