please help me to click on these buttons..
thanks in advance.
regards,
Sudhanva.M
created
Mar '15
last reply
Jul '18
- 19
replies
- 26.8k
views
- 11
users
- 3
likes
- 2
links
please help me to click on these buttons..
thanks in advance.
regards,
Sudhanva.M
You can simulate pressing these keys using the appium driver's press_keycode method, which calls adb's "input keyevent", shown here in Ruby
appium_driver.driver.press_keycode <keycode>
Back is 4
Menu is 82
Recent Apps is 187 (APP_SWITCH)
You can find the full list of keycodes here:
http://developer.android.com/reference/android/view/KeyEvent.html2.1k
Hello @ranjith_hs,
Which Event Number you are using?
since pressKeyCode has been depreciated you can use
import io.appium.java_client.AppiumDriver;
import io.appium.java_client.MobileElement;
import io.appium.java_client.android.AndroidDriver;
import org.openqa.selenium.remote.DesiredCapabilities;
import io.appium.java_client.android.nativekey.AndroidKey;
import io.appium.java_client.android.nativekey.KeyEvent;
//initialize AppiumDriver and DesiredCapabilities
((AndroidDriver<MobileElement>) driver).pressKey(new KeyEvent(AndroidKey.HOME));
((AndroidDriver<MobileElement>) driver).pressKey(new KeyEvent(AndroidKey.APP_SWITCH));