- driver.sendKeyEvent(84);
Appium says it successfully sent in the command but ‘search‘ does not get tapped. Cursor remains in text box and results do not filter. - HashMap swipeObject = new HashMap();
swipeObject.put("keycode", 84);
((JavascriptExecutor ) driver).executeScript("mobile: keyevent", swipeObject);
Appium says not yet implemented. - JavascriptExecutor jse = (JavascriptExecutor) driver1; jse.executeScript("UIATarget.localTarget().frontMostApp().keyboard().buttons()[‘Done‘].tap();");
Appium says not yet implemented. - driver.sendKeyEvent(AndroidKeyCode.ENTER, AndroidKeyMetastate.META_FUNCTION_ON);
Appium says it successfully sent in the command but ‘search‘ does not get tapped. Cursor remains in text box and results do not filter. - driver.sendKeyEvent(AndroidKeyCode.ENTER);
Nothing happens
时间: 2024-10-26 13:51:18