gpt4 book ai didi

c# - System.InvalidOperationException : unknown error: Runtime. 评估抛出异常:通过 C# 使用 Azure 和 Selenium 的 DOMException 错误

转载 作者:太空宇宙 更新时间:2023-11-03 11:58:10 28 4
gpt4 key购买 nike

我正在通过 Azure 每日计划运行在远程计算机上运行测试。一些测试失败并显示以下错误日志。我该如何解决这个问题?

注意:我没有启动 chrome 驱动程序的方法实现,因为我正在引用其他具有抽象方法的解决方案的 dll。

堆栈:NUnit、C#、Selenium、Visual Studio、Azure、log4Net

OneTimeSetUp: Automation.Test.Framework.Models.Exceptions.AtGenericException : Error initializing WebDriver Chrome ----> System.InvalidOperationException : unknown error: Runtime.evaluate threw exception: DOMException: Failed to read the 'localStorage' property from 'Window': Access is denied for this document. at :1:1 (Session info: chrome=77.0.3865.90) (Driver info: chromedriver=2.36.540470 (e522d04694c7ebea4ba8821272dbef4f9b818c91),platform=Windows NT 6.3.9600 x86_64)

最佳答案

这个错误信息...

OneTimeSetUp: Automation.Test.Framework.Models.Exceptions.AtGenericException : Error initializing WebDriver Chrome 
System.InvalidOperationException : unknown error: Runtime.evaluate threw exception: DOMException: Failed to read the 'localStorage' property from 'Window': Access is denied for this document. at :1:1 (Session info: chrome=77.0.3865.90)
(Driver info: chromedriver=2.36.540470 (e522d04694c7ebea4ba8821272dbef4f9b818c91),platform=Windows NT 6.3.9600 x86_64)

...表示 ChromeDriver 无法启动/生成新的 WebBrowser,即 Chrome 浏览器 session 。

您的主要问题是您使用的二进制文件版本之间的不兼容,如下所示:

  • 您正在使用 chromedriver=2.36
  • chromedriver=2.36 的发行说明明确提到以下内容:

Supports Chrome v63-65

Supports Chrome version 77

因此 ChromeDriver v2.36Chrome 浏览器 v77.0 之间存在明显的不匹配


解决方案

确保:

  • ChromeDriver 已更新为当前 ChromeDriver v78.0水平。
  • Chrome 已更新到当前 Chrome 版本 78.0 级别。 (根据 ChromeDriver v78.0 release notes )
  • 清理您的项目工作区,通过您的IDE重建您的项目,仅使用所需的依赖项。
  • 如果您的基础 Web Client 版本太旧,则将其卸载并安装最新的 GA 和发布版本的 Web Client
  • 系统重启
  • 非root用户身份执行您的@Test
  • 始终在 tearDown(){} 方法中调用 driver.quit() 以关闭和销毁 WebDriverWeb 客户端 实例优雅。

关于c# - System.InvalidOperationException : unknown error: Runtime. 评估抛出异常:通过 C# 使用 Azure 和 Selenium 的 DOMException 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58556674/

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