-
Notifications
You must be signed in to change notification settings - Fork 6
Open
Labels
Description
Hi,
Firstly apologies if this is a basic question but i am having trouble getting Dalek to run my test with IE11. Everytime my test executes i get the default page localhost:5555 and
'This is the initial start page for the WebDriver server.'
Is there a way around this or is there some config i need to specify?
Its just a basic test for now to see if i can get IE to open correctly
module.exports = {
'Open Google': function (test) {
test
.open('http://google.com')
.assert.title().is('Google', 'It has title')
.done();
}
};
Any help appreciated