Is there any alternative for protractor's mouseMove? I would like the mouse to hover over the menu. But it appears to be unsupported with geckodriver.
So far I've tried, browser.executeScript('arguments[0].mouseMove()', element(by.className('menu')));
But get this error, Failed: TypeError: arguments[0].mouseOver is not a function.
Thanks :)