Jasmine spectrum timed to reset webdriver control flow

Now I am running into this error with a big mistake. I keep returning from Protractor when running test suites with Internet Explorer.

These tests run fine in Chrome, but when it comes to IE, it looks like the handling of timeouts is a little different.

Below is a little protractor config file:

exports.config = {
  framework: 'jasmine2',
  jasmineNodeOpts: {
    showColors: true,
    defaultTimeoutInterval: 120000
  },
  allScriptsTimeout: 120000,
  getPageTimeout: 120000,
  chromeDriver: null, //location of chromedriver and firefox binaries if null will attempt to find using PATH
  firefoxPath: null,
  params: {
    username: user@user.com',
    underTestUrl: 'localhost'
  },
  capabilities: {
    'browserName': 'internet explorer',
    'ie.ensureCleanSession': 'true'
  },
  baseUrl: 'http://localhost:5000',
  jvmArgs: ['-Dwebdriver.ie.driver=IEDriverServer3.4.0.exe']
}

      

This question has been asked multiple times and I literally went to any fix even before using the 32-bit IE Driver

+3


source to share





All Articles