5

谁能告诉我量角器何时抛出 “未知错误:无法从未知错误确定加载状态:未处理的检查器错误:{“code”:-32000,“message”:“内部错误:未找到主世界执行上下文。”}'例外。

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

提前致谢!

Conf.js

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']             
        };
4

1 回答 1

0

这可能是导致问题的驱动程序版本。

https://github.com/angular/protractor/issues/5347

你可以添加

chrome_options.add_argument('--disable-site-isolation-trials')
于 2021-03-27T10:50:28.737 回答