Appium Tutorial – Type In Text Box Of Android App

Text box is very common element of any android native software app or software web application. In android appium software automation test, If you wants to type text in text box of android app then you can use sendKeys(keysToSend) command of selenium WebElement interface. Let’s look at example to learn how to type in text … Read more

Appium : Tap On Switch Button Of Android App To ON/OFF

In android, There is one important element ON/OFF switch. It is very easy to ON/OFF switch in android automation test using appium but you should know how to do it. In this article, I am going to described you how to ON/OFF switch in appium android automation test using tap(int fingers, int duration) method of MobileElement class. … Read more

Appium Android : Verify Element Present or Not On App’s Screen

In android automation test, Sometimes you need to verify if element is present or not on native  software app’s screen before taking some action. Example : You wants to click on button only if some other element is present on screen of software app. You will face this kind of situation and you have to … Read more

Record Appium Test Execution Video For Android App

Appium software test execution video recording Is required when you are executing very large tests and perform multitasking. Recording android device’s screen video during software automation testing can helps you to find out when Issue occurred and what are the steps to reproduce Issue. You can Identify why your software test Is failing by looking In … Read more