2 minutes read What is OpenSTF ? OpenSTF is an open source project that gives us the ability to create our own test farm with real devices. Using OpenSTF we can create a device farm that gives us the possibility to share devices between team members without actually physically moving the device from the device farm. Why is… Read more »
Posts Categorized: Native Device Testing
How to use the Overview, Home and Back buttons in Appium for Android
< 1 minute read Using the Overview, Home and Back native buttons is pretty straight forward using WebDriver and Appium. Below there are the code examples for all the 3 buttons: How to click the Back Button on Android with Selenium WebDriver and Appium public void clickBackButton(){ ((AndroidDriver)driver).pressKeyCode(AndroidKeyCode.BACK); } How to click the Overview Button on Android with… Read more »