montagejs / screening

49 stars 16 forks source link

Clicks are not working on IE driver #253

Closed irinamok closed 12 years ago

eliseosoto commented 12 years ago

Clicks actually work on IE, it's Montage the one that does not work correctly with IE.

Try the following script and you'll see that the values change.

var agent = new Agent();

agent.gotoUrl("/screening/samples/nomjs-sample.html");

agent.setWindowSize(1034, 875);

agent.wait(1000);
agent.element("//*[@id='button']").click();
agent.wait(1000);
agent.element("//*[@id='button2']").click();
agent.wait(1000);
eliseosoto commented 12 years ago

This issue is fixed with #258

irinamok commented 12 years ago

This bug is fixed on master, let's include IE support in M10