dalekjs / dalek-browser-ie

[unmaintained] Internet Explorer Browser bindings for DalekJS
MIT License
9 stars 6 forks source link

second .execute() fails on remote IE #4

Open dagjomar opened 10 years ago

dagjomar commented 10 years ago

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
asciidisco commented 10 years ago

Were you able to test this with other version of IE as well? I only have IE9 & IE10 VMs hanging around; would wait for your response before trying to reproduce it.

dagjomar commented 10 years ago

Tested on IE8, IE9 and IE10. No luck on any

asciidisco commented 10 years ago

Okay. Thanks for the info, will investigate.

Dendrox commented 9 years ago

Has anyone found a fix (or work around) for this issue yet?