当我在IE浏览器中运行测试时出现以下错误:
Error: Timeout - Async callback was not invoked within timeout specified by jasmine.DEFAULT_TIMEOUT_INTERVAL.
我尝试过增加allScriptsTimeout : 120000
和defaultTimeoutInterval : 120000
,但这没有帮助。
这是我的配置文件:
allScriptsTimeout : 120000,
capabilities : {
'browserName' : 'internet explorer',
},
localSeleniumStandaloneOpts : {
'jvmArgs' : ['-Dwebdriver.ie.driver=node_modules/protractor/node_modules/webdriver-manager/selenium/IEDriverServer3.3.0.exe']
},
jasmineNodeOpts : {
defaultTimeoutInterval : 120000
},