标签: appium appium-android python-appium
我试图单击“确定”按钮,即Android设备中的刻度标记,但它正在发生,因为键盘没有任何xpath值。 有人可以帮我这个吗?
答案 0 :(得分:0)
对鸦片的按键操作由 driver.press_keycode(code)
driver.press_keycode(code)
All required codes can be found here
KEYCODE_ENTER
因此,就您而言, 最终的代码是这样的,
driver.press_keycode(66)