Selenium WebDriver Tutorials – Basic Action Commands And Operations With Examples

I have already posted Selenium WebDrier Tutorials posts how to setup web driver with eclipse and Run first test with webdriver, how to configure junit with eclipse to generate webdriver test report. We have also learn different methods of locating elements of software web application in webdriver. All these things are very basic things and you need … Read more

Run Selenium IDE Test In Google Chrome Browser

Earlier have shared many tutorial examples on selenium IDE different commands and Its usage. You can view each of that example on Selenium IDE Tutorial. Still many peoples are using selenium IDE to automate their small web applications and sometimes they needs to perform compatibility testing In Google Chrome and IE browsers like submitting form, … Read more

When to use findElements() method in selenium webdriver

findElements method is different than the findElement method in selenium webdriver. findElements method is useful to find all elements from page using given element locator strategies.You can locate all specific elements from page using class name, css selector, id, name, link text, partial link text, tag name or xpath. findElements will return list of web elements using given locator strategy and … Read more

How to Nomalize Space in XPath

In this article, you’ll learn how to remove leading and trailing whitespace in XPath using the normalize-space() function for cleaner and more accurate text matching. What is normalize-space in Selenium? Normalize-space is a very useful function in XPath for whitespace normalization when you build it concerning some string or keyword to use it in the … Read more