【发布时间】:2021-12-24 17:21:36
【问题描述】:
【问题讨论】:
-
请提供足够的代码,以便其他人更好地理解或重现问题。
标签: python-appium
【问题讨论】:
标签: python-appium
您可以使用 uiautomatorviewer 获取复选标记的 id 并单击 它。
输入值后使用返回键可能有效(driver.navigate().back() for java,我猜是python driver.pressKeyCode(AndroidKeyCode.BACK);)
【讨论】:
appium 的按键操作由
driver.press_keycode(code)
All required codes can be found here
driver.press_keycode(66)
【讨论】: