url is not loading in IE 11 using protractor 3.0.0

169 views Asked by At

I am using protractor cucumber framework. My problem is, the url which is working fine in chrome is not loading in IE 11.

protractor version: 3.0.0

config file:

var argv = require('yargs').argv;

exports.config = {
  framework: 'custom',
  frameworkPath: require.resolve('protractor-cucumber-framework'),
  specs: [ 'SitFeature/*.feature' ],
  seleniumArgs: ['-Dwebdriver.ie.driver=node_modules/protractor/selenium/IEDriverServer.exe'],

 capabilities: {

        'browserName': 'internet explorer'

        },

 params: {
        explicitWaitTime:60,
        isDataDriven:false
    }


};

please help to resolve

0

There are 0 answers