5

分度器がいつ 「不明なエラー: 不明なエラーから読み込みステータスを判断できません: 未処理のインスペクター エラー: {"コード":-32000,"メッセージ":"内部エラー: メイン ワールドの実行コンテキストが見つかりません."}」をスローする時期を教えてください。例外。

「不明なエラー」が WireProtocol からスローされ、通常はアプリケーションが 4xx または 5xx ステータス コードを返したことを意味することを理解しています。しかし、「Internal error: main world execution context not found.」の意味がわからない

前もって感謝します!

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