This module is a browser plugin for DalekJS. It provides all a WebDriverServer & browser launcher for Internet Explorer.
The browser plugin can be installed with the following command:
$ npm install dalek-browser-ie --save-dev
You can use the browser plugin by adding a config option to the your Dalekfile
"browsers": ["IE"]
Or you can tell Dalek that it should test in this browser via the command line:
$ dalek mytest.js -b IE
The Webdriver Server tries to open Port 5555 by default, if this port is blocked, it tries to use a port between 5555 & 5564 You can specifiy a different port from within your Dalekfile like so:
"browsers": {
"ie": {
"port": 6555
}
}
It is also possible to specify a range of ports:
"browsers": {
"ie": {
"portRange": [6100, 6120]
}
}