如何在Appium中从Android键盘中选择“确定”按钮

时间:2018-01-16 14:02:06

标签: appium appium-android python-appium

我试图单击“确定”按钮,即Android设备中的刻度标记,但它正在发生,因为键盘没有任何xpath值。 有人可以帮我这个吗? enter image description here

1 个答案:

答案 0 :(得分:0)

对鸦片的按键操作由 driver.press_keycode(code)

All required codes can be found here

  • 66-KEYCODE_ENTER

因此,就您而言, 最终的代码是这样的,

driver.press_keycode(66)