Hi guys,
I'm trying to use Java long tap on appium server 1.4.13 and look like it's work same as usual pressKeyCode method.
At AndroidDriver.class
public void pressKeyCode(int key) {
this.execute("pressKeyCode", getCommandImmutableMap("keycode", Integer.valueOf(key)));
}
public void longPressKeyCode(int key) {
this.execute("pressKeyCode", getCommandImmutableMap("keycode", Integer.valueOf(key)));
}
Will it fixed?
Really need this method to test launching activity after long tap on home button.