Protractor test in IE

后端 未结 1 1553
你的背包
你的背包 2020-12-06 14:46

I\'m trying to just run the example test that is included in protractor on internet explorer and not getting very far :(

相关标签:
1条回答
  • 2020-12-06 15:43

    1) Download IEDriverServer.exe 2) Place it in C:\Windows\System32

    exports.config = {
      'autoStartStopServer': true,
    
      capabilities: {
        'browserName': 'internet explorer'
      },
      framework: 'jasmine',
      specs: ['example_spec.js'],
      jasmineNodeOpts: {
        defaultTimeoutInterval: 30000
      }
    };
    

    3)Open Internet Explorer click options

    4)In Security tab > Disable protected mode for all zones

    5)Navigate to Privacy tab TurnOff PopUp Blocker

    6)Navigate to Advanced tab

    0 讨论(0)
提交回复
热议问题