gpt4 book ai didi

selenium - Protractor 什么时候抛出 'unknown error: cannot determine loading status' ..... 异常

转载 作者:行者123 更新时间:2023-12-03 17:41:26 24 4
gpt4 key购买 nike

谁能告诉我 Protractor 什么时候扔
'未知错误:无法确定加载状态
来自未知错误:未处理的检查器错误:{"code":-32000,"message":"内部错误:未找到主世界执行上下文。"}'
异常(exception)。

我知道从 WireProtocol 抛出“未知错误”,这通常意味着应用程序返回 4xx 或 5xx 状态代码。但不确定“ 内部错误:未找到主世界执行上下文。 ”是什么意思

提前致谢!

配置文件

exports.config = {
framework: 'jasmine',
allScriptsTimeout: 600000,
onPrepare: function () {
browser.ignoreSynchronization = true;
browser.manage().timeouts().pageLoadTimeout(600000);
require('jasmine-reporters');
var jReporter=new jasmine.JUnitXmlReporter(__dirname + '\\Logs', true, true, undefined, true);
jasmine.getEnv().addReporter(jReporter);
},
rootElement: 'body',
chromeDriver: 'C:/node_modules/protractor/selenium/chromedriver.exe',
capabilities: {
'browserName': 'chrome',
'chromeOptions': {'debuggerAddress': 'localhost:8088'}
},
jasmineNodeOpts: {
isVerbose: true,
showColors: true,
includeStackTrace: true,
defaultTimeoutInterval: 900000
},
onComplete: function () {},
onCleanUp: function() { },
specs: ['./sampleTest.spec.js']
};

最佳答案

这可能是导致问题的驱动程序版本。
https://github.com/angular/protractor/issues/5347
您可以添加

chrome_options.add_argument('--disable-site-isolation-trials')

关于selenium - Protractor 什么时候抛出 'unknown error: cannot determine loading status' ..... 异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35060974/

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