Press the enter key on ios

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);

1 Like

@Diogo_Miranda

device.keys('\n'); //device is Appium browser object

or

device.keys('\uE007');