Method To Compare Two Integer Values In Selenium WebDriver Test

We have learnt how to create common function to compare two strings In my previous post. Same way, Many times you need to compare two Integer values. And based on comparison result, You can perform your next step of test execution. You can also stop or continue your test execution on assertion failure by using soft … Read more

General Function To Comparing Two Strings In Selenium WebDriver TestCase

When you will use selenium webdriver to automate real world applications, Many times you have to compare two strings like page title, product name or any other string. And based on comparison result you have to take specific action. Simple example of such scenario Is, You are navigating on any view product page to add product … Read more

How To Handle Dynamic Web Table In Selenium WebDriver

If web table has same number of rows and same number of cells In each rows every time you load page then It Is very easy to handle that table’s data In selenium WebDriver software testing tool as described In How To Extract Table Data/Read Table Data Using Selenium WebDriver post. Now supposing your table’s rows … Read more

How To Handle Ajax Auto Suggest Drop List In Selenium Webdriver

What Is Ajax Auto Suggest Drop List? Before learning about how to handle ajax auto suggest drop down list In selenium webdriver software testing tool, Let me tell you what Is ajax auto suggest drop down list. If you have visited any software website with search box and that search box Is showing auto suggest list … Read more