Open
Description
On IE, the test exits without warning on the second .execute() statement.
Running a Virtual Machine with IE 8
module.exports = {
'Testing': function (test) {
test
.open("http://128.221.114.222:3333")
.wait(3000)
.execute(function(e){
return true;
}, true, 5000)
.wait(300)
.execute(function(e){
return true;
}, true, 5000)
.wait(3000)
.done();
}
};
Output from console is:
Running Browser: Internet Explorer
OS: windows 6.2.9200 x64
Browser Version: 10
RUNNING TEST - "Testing load and search"
▶ OPEN http://128.221.114.222:3333
▶ WAIT 3000 ms
▶ EXECUTE
▶ WAIT 300 ms