Hi, all I am with problem. I am enter a text, and after i need to press ENTER. But in iOS i can’t. Anyone can help me ?
Hi @Diogo_Miranda
You can try:
driver.getKeyboard().pressKey(Keys.ENTER);
@Diogo_Miranda
device.keys('\n'); //device is Appium browser object
or
device.keys('\uE007');