Using "Done" after sending a key on iOS emulator (C#)

Hey there.
I am a somewhat Appium noob and would like some help with an issue I can’t seem to solve.
I want to automate a Done Key press on the keyboard after inserting a value in an input field.
I’ve tried .SendKeys(Keys.Return); but I think it doesn’t really do what I wanted it to do.
Thanks in advance,
Pavel

Hi @pavelzagalsky, please try below.

driver.findElemnent(By.name(“done”)).click();

I hope this will help you.

Thanks
Chirag

2 Likes

Sweet, thanks a lot!