gpt4 book ai didi

c# - Webdriver 浏览器日志记录 IE C#

转载 作者:太空宇宙 更新时间:2023-11-03 12:34:20 27 4
gpt4 key购买 nike

所以我尝试使用 selenium webdriver (2.53.1) 创建一个脚本,该脚本可以检测和记录显示混合内容的站点。我快速环顾四周,发现

Driver.Manage().Logs.GetLog(LogType.Browser);

但是你必须用下面的设置你的驱动程序

ChromeOptions options = new ChromeOptions();
options.SetLoggingPreference(LogType.Browser, LogLevel.All);
driver = new ChromeDriver(options);

上面的代码适用于 chrome,但是当我为我的 IEDriver 尝试类似的设置时

InternetExplorerOptions ieOptions = new InternetExplorerOptions();
ieOptions.SetLoggingPreference(LogType.Browser, LogLevel.All);
ieOptions.EnsureCleanSession = true;
ieOptions.RequireWindowFocus = true;
ieOptions.IgnoreZoomLevel = true;
Driver = new InternetExplorerDriver(ieOptions);

我得到以下异常

Test Name:  Test
Test FullName: sniper_regression.ExistingUser("ie").Test
Test Source: c:\git\sniper-regression\sniper-regression\ExistingUser.cs : line 559
Test Outcome: Failed
Test Duration: 0:00:32.02

Result Message:
System.InvalidOperationException : Command not found: POST /session/51ed52d9-5842-4fe6-b854-e40edad1654f/log
Command duration or timeout: 0 milliseconds
Build info: version: '2.53.1', revision: 'a36b8b1', time: '2016-06-30 17:37:03'
System info: host: 'CHI-GRID-NODE1', ip: '10.34.161.112', os.name: 'Windows Server 2008 R2', os.arch: 'amd64', os.version: '6.1', java.version: '1.8.0_111'
Driver info: org.openqa.selenium.ie.InternetExplorerDriver
Capabilities [{browserAttachTimeout=0, ie.enableFullPageScreenshot=true, enablePersistentHover=false, ie.forceCreateProcessApi=false, ie.forceShellWindowsApi=false, pageLoadStrategy=normal, ignoreZoomSetting=true, ie.fileUploadDialogTimeout=3000, version=11, platform=WINDOWS, nativeEvents=true, ie.ensureCleanSession=true, elementScrollBehavior=0, ie.browserCommandLineSwitches=, requireWindowFocus=true, browserName=internet explorer, initialBrowserUrl=http://localhost:43728/, javascriptEnabled=true, ignoreProtectedModeSettings=false, enableElementCacheCleanup=true, unexpectedAlertBehaviour=dismiss}]
Session ID: 51ed52d9-5842-4fe6-b854-e40edad1654f
Result StackTrace:
at OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Response errorResponse)
at OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String driverCommandToExecute, Dictionary`2 parameters)
at OpenQA.Selenium.Remote.RemoteWebDriver.InternalExecute(String driverCommandToExecute, Dictionary`2 parameters)
at OpenQA.Selenium.Remote.RemoteLogs.GetLog(String logKind)
at sniper_regression.ExistingUser.Test() in c:\git\sniper-regression\sniper-regression\ExistingUser.cs:line 559

GetLog() 是否需要针对 IE 进行不同的设置?任何建议将不胜感激,谢谢。

最佳答案

IE 驱动程序现在不支持,也从来没有支持任何日志记录 API。这部分是因为 IE 驱动程序的(无偿,志愿者)开发人员和 WebDriver 的创建者都认为 API 的远程端设计不佳,并且 API 将来可能会发生变化。此外,Internet Explorer 浏览器本身不会以编程方式公开成功实现当前设计的 WebDriver 日志记录 API 所需的所有功能。但是,IE 驱动程序在 GitHub 上可用,并且接受实现新功能的拉取请求。

关于c# - Webdriver 浏览器日志记录 IE C#,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41558380/

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