Appium Tutorials – Retrieve Drop Down Values List Of Android App

Retrieving all values from drop down list of android app software in appium software automation test is little tricky task but not hard. You can view how to SELECT VALUE from drop down list’s popup in appium test. We can use findElements() method of selenium webdriver to locate and get all values from drop down list. … Read more

Appium – Hide Android Keyboard During Test

Hiding keyboard in android device is one of the common action. In your android mobile device, It will show you soft keyboard on screen automatically when you type text in text box of software app so it will hide some of the elements. Now supposing you wants to select value from drop down which is … Read more

Appium : Select Check-box Of Android App

Check box is another common element of any native, hybrid or mobile software web applications. Selecting check box of android software app in appium test is very easy task and I hope, most of you already knows how to select android app’s check box in appium automation test but i have to think about bottom level … Read more

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