You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
So, in some situations this could lead to this behaviour. Also, in order to remotely drive IE, the setting "Enable Protected Mode" (in IE's Security tab) must be set to the same value for ALL zones. If it is on for some zones and off for others, remote driving will not work.
So please check that first; if the settings are correct, please try to get IE running in a freshly created VM.
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
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
Any help appreciated
The text was updated successfully, but these errors were encountered: