gpt4 book ai didi

Protractor - 无法读取未定义的属性 '$$testability'

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

我收到一条错误消息:

"Error while waiting for Protractor to synce with the page: "Cannot read property '$$testability' of undefined"

下面是我的测试。

describe('On the MyMoments page', function(){  

beforeEach(function() {
var editLocationText = 'Location';

browser.driver.get('http://192.168.0.6:8100/#/page1/myMoments');
});

it('The edit button should work', function() {
browser.driver.get('http://192.168.0.6:8100/#/page1/myMoments').then(function() {
// browser.waitForAngular();
browser.getCurrentUrl().then(function(url) {

});
});


});
});

这是我的配置文件:

exports.config = {  
capabilities: {
'browserName': 'chrome',
'chromeOptions': {
args: ['--disable-web-security']
}
},
baseUrl: 'http://192.168.0.6:8100',
specs: [
'*.test.js'
],
jasmineNodeOpts: {
isVerbose: true,
}
};

我认为这与我的测试无关,因为我的测试非常简单。以前有人遇到过这个问题吗?我有点卡住了。

谢谢。

编辑:

为了修复此错误,将我的 Protractor 版本一直降级到 4.0.14。现在我得到:

"Failed: Error while waiting for Protractor to sync with the page: "[ng:test] no injector found for element argument to getTestability/http://errors.angularjs.org/1.5.3/ng/test"

如果有人知道这是什么或如何解决这个问题,请告诉我!

谢谢。

最佳答案

这是 Protractor 中的一个已知问题,请参阅 here .正如问题中提到的,这是因为 browser.angularAppRoot() 如果未向其传递值,则应返回应用程序根目录的当前值,但当前返回未定义。即将发布的新版本应该可以解决此问题。

希望对你有帮助

关于 Protractor - 无法读取未定义的属性 '$$testability',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43882242/

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