When I run test in IE browser I get following error:
Error: Timeout - Async callback was not invoked within timeout specified by jasmine.DEFAULT_TIMEOUT_INTERVAL.
I have tried increasing the allScriptsTimeout : 120000
and defaultTimeoutInterval : 120000
but it does not help.
here is my config file:
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
},