Moving the mouse with Protractor -
i'm trying move mouse in protractor, can click on flash button @ position. therefore can't use element locator, it's flash.
i've tried moving mouse following:
browser.actions().mousemove({x: 50, y: 50}).perform(); browser.actions().mousemove({x: 250, y: 250}).perform();
and don't see mouse moving @ in either chrome or firefox. i'm using protractor version 2.1.0.
how can make mouse move in protractor?
Comments
Post a Comment