In the latest version java client Hidekeyboard() function not appeared.
Is there any other technique is present
How to handle the hidekeyboard methrolory in appium client
I’m using java client 6.0.0 Hope will help, my code to hide the keyboard is:
public void hideKeyboard() { while (driver.isKeyboardShown()) { try { driver.hideKeyboard();
} catch (Exception e) { } } }
Thanks Zuzeac. Then i have one doubt how to scroll in native app using Java Client 6.0.0 Then how to use this executeScript in JavaScript driver.executeScript(script, args)
Find more about scroll/swipe-TouchActions here https://discuss.appium.io/t/how-to-use-touch-action-in-new-java-client-6-0-0-beta4/21336/16 About javaScript, I have no idea right now