Asked
Active
Viewed 759 times
0
-
Please provide enough code so others can better understand or reproduce the problem. – Community Nov 16 '21 at 23:16
2 Answers
0
You can get the id of the checkmark using uiautomatorviewer and click it.
Using the back key after entering the value may work(driver.navigate().back() for java, I guess for python driver.pressKeyCode(AndroidKeyCode.BACK);)

muhammetkiran
- 1,422
- 1
- 6
- 6
0
Key presses on appium are done by
driver.press_keycode(code)
All required codes can be found here
- code is 66 for KEYCODE_ENTER, so
driver.press_keycode(66)

Nithin Mohan
- 372
- 1
- 9
-
-
This code solved the issue - driver.execute_script('mobile: performEditorAction', {'action': 'done'}) – Prashanth Nov 25 '21 at 17:15