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

How To Extract Table Data/Read Table Data Using Selenium WebDriver Example

Table Is very frequently used element In software web pages. Many times you need to extract your web table data to compare and verify as per your test case using selenium webdriver software testing tool. You can read about How To Extracting All Links From Page If you need It In your test scenarios. If you … Read more

How To Verify Element Is Enabled Or Disabled in Selenium WebDriver

During your Selenium WebDriver software testing test case creation, frequently you need to verify that your targeted element is enabled or disabled on page of software web application before performing action on it. Selenium has built-in method isEnabled() to check if the element is enabled or disabled on software web application’s page. Verification of element is disable and verification … Read more