I’m starting to get frustrated with Chrome emulator:
Using JAVA + Selenium + TestNG I’m testing many of our web applications which runs on few browsers. On mobile browser we have a special design – and NOW i’m trying to test it with the Chrome emulator but without great success. I can only load a page and check the elements, BUT I CAN’T click() on it (or other interactions with Actions object).
I’ve tried a simple :
someElement.click()
and
Actions action = new Actions(driver);
action.moveToElement(someElement).click().build().perform();
and both doesn’t work. The run just stays there until the test case gets time out.
Any ideas?
Thanks