几天前,我能够在硒中进行测试。我今天尝试运行我的代码,并收到以下错误消息:
ChromeDriver was started successfully.
Exception in thread "main" org.openqa.selenium.SessionNotCreatedException: session not created: This version of ChromeDriver only supports Chrome version 94
Current browser version is 96.0.4664.55 with binary path /Applications/Google Chrome.app/Contents/MacOS/Google Chrome
谷歌浏览器将短暂打开并立即关闭,而无需运行实际测试。我卸载并重新安装了谷歌浏览器,并收到同样的问题。我目前正在使用Mac并使用Java运行自动化测试。
可以帮我通过这个考试吗?这样我就可以继续工作了。
请平等您的铬和铬驱动程序版本。通过这个图书馆一直这样做的简单方法
https://bonigarcia.dev/webdrivermanager/
步骤:
> < li>
将此依赖关系添加到您的pom中
<dependency>
<groupId>io.github.bonigarcia</groupId>
<artifactId>webdrivermanager</artifactId>
<version>5.0.3</version>
<scope>test</scope></dependency>
通过以下方式初始化驱动程序
WebDriverManager.chromedriver().setup();
此错误消息...
Exception in thread "main" org.openqa.selenium.SessionNotCreatedException: session not created: This version of ChromeDriver only supports Chrome version 94
Current browser version is 96.0.4664.55 with binary path /Applications/Google Chrome.app/Contents/MacOS/Google Chrome
…意味着ChromeDriver无法启动/生成新的浏览上下文,即Chrome浏览器会话。
您的主要问题是您使用的二进制文件版本之间的不兼容性,如下所示:
支持Chrome版本96
支持Chrome版本94
所以chromedriver=91.0和chrome=96.0.4664.45之间明显不匹配
确保:
我得到了一个错误时,打开铬与硒,它打开和关闭窗口后立即打开。下面是我的代码:
我试图使用rsDriver函数运行RSelenium,但当我运行时,我得到一条消息,告诉我需要一个较新版本的Chrome:
如果能帮上忙,我将不胜感激。 我下载了CHROMEDRIVER 复制到我系统中的python路径 当我试图调用CHROME浏览器并在Pycharm下设置一个可执行路径时,我得到了以下错误。 代码---驱动程序=web驱动程序。Chrome(executable_path="C:\用户\vinayak.gulati\AppData\本地\程序\Python\Python37\chromedriver
问题内容: 我正在尝试使用rsDriver函数运行RSelenium,但是当我运行时,出现 一条消息,告诉我我需要更新版本的Chrome: 错误消息似乎表明我需要Chrome版本74.0.3729.6,但是当我查看Chrome的设置时,它表明我正在运行最新的稳定版本(73.0.3683.75)。进一步搜寻之后,74.0.3729.6是Chrome的预发行开发版本:我是否需要安装此版本才能将Chro
问题内容: 我在Windows 7,硒,chromedriver版本84(最新)上使用python 3来自动运行chrome浏览器。 我正在使用此脚本: 而且我总是在运行时收到此错误。 我的ChromeDriver正在运行。我也使用了其他版本的chromedriver,但是我无法导航到网站! 问题答案: 您的ChromeDriver版本和已安装的Chrome版本需要匹配。您使用的是ChromeDr
我目前正在开发中的一个控制台应用程序。NETCore3.1,在VisualStudio中运行时效果良好。 在Visual Studio中运行 但是当我发布应用程序时,我得到了selenium版本错误。 已发表的申请 我有最新的NuGet软件包。 镀铬版 有人知道这是怎么回事吗? 在这里您可以看到未发布的应用程序(底部)运行良好,但发布的应用程序(顶部)运行不正常,即使我没有更改任何内容! 在此处输