Zarkonnen / se-interpreter

Interpreter for Selenium Builder JSON scripts based on node.js and wd.
34 stars 31 forks source link

mouseOverElement don't work correctly #59

Open Kralock opened 7 years ago

Kralock commented 7 years ago

Hi,

I use Selenium Builder with this step : mouseOverElement. It doesn't work. I search for a solution and I finally find an answer from an open issue written by asauber

So, I replace my mouseOverElement.js with this

exports.run = function(tr, cb) { tr.locate('locator', cb, function(err, el) { tr.do('moveTo', [el], cb); }); };

And its work great now.