Set ANDROID_HOME and Path Environment Variables For SDK In Windows

ANDROID_HOME : You must need to set android_home environment variable in order to run appium test. In previous post, We learnt about how to download and install android SDK software and its different packages in windows. In order to use android environment to run appium software automation tests, You must need to set ANDROID_HOME and path … Read more

How To Select Option By Value or By Index In Selenium WebDriver With Example

In my earlier post, We have seen example of HOW TO SELECT OPTION BY VISIBLE TEXT from drop down. There are two more alternatives to select option value from drop down or list box in selenium webdriver software testing tool. 1. Selecting Option By Value and 2. Selecting Option By Index. You can use any one from these three to select … Read more

Read-Write Text File In Java – Tutorials For WebDriver

We have learnt about String class and Its different functions In my previous post. Now our next topic Is How to write In to text file or How to read text file In java software development language. Many times you will need reading or writing text file In your selenium webdriver software automation test case development. For … Read more

Selenium WebDriver : How to selenium wait until element is visible or appear or present on page

Sometimes you need selenium wait until element is visible when your targeted element is not visible on the page when the page is loading.  If you can put something like wait until element is visible selenium java test then test execution will wait until the condition match. In any software web application’s webdriver test case, you can easily wait for … Read more