我在 BrowserStack 中运行了我的测试,这是一个示例结果
如何在硒测试中关闭 Firefox 的这种行为DesiredCapabilities
?
我希望能够通过设置而不是为特定浏览器添加代码来驱动这种行为。
我在 BrowserStack 中运行了我的测试,这是一个示例结果
如何在硒测试中关闭 Firefox 的这种行为DesiredCapabilities
?
我希望能够通过设置而不是为特定浏览器添加代码来驱动这种行为。
此提示与firefox 健康报告有关,您可以将其禁用为:(在 java 中)
FirefoxProfile profile = new FirefoxProfile();
profile.setPreference("datareporting.healthreport.uploadEnabled", false);
profile.setPreference("datareporting.healthreport.service.enabled",
false);
profile.setPreference("datareporting.healthreport.service.firstRun",
false);
WebDriver driver = new FirefoxDriver(profile);