Selenium Tutorial

Selenium – StaleElement ReferenceException StaleElement ReferenceException Introduction When you’re automating web tests with Selenium with C#/Java, you may encounter the StaleElementReferenceException. This exception occurs when an element that was previously located on the page Read more »
Selenium – NoSuchWindowException NoSuchWindowException NoSuchWindowException is one of the most common exception in selenium… Error: Unable to find element on closed window on IE11 with Selenium WebDriver It is because WebDriver is not Read more »
Selenium – NoSuchElementException NoSuchElementException One of the most common exception we face during the execution of tests is the NoSuchElementException. The name of the exception is self-explanatory but is this really due to Read more »
Selenium: Stale Element Exception Introduction When you’re automating web tests with Selenium with C#/Java, you may encounter the StaleElementReferenceException. This exception occurs when an element that was previously located on the page is NO Read more »
SELENIUM – REST API AUTOMATION API Automation Here are the steps to follow to automate Rest API Automation.. 1. Right click on Solution name, click on “Manage NuGetPackages…” 2. Search for “RestSharp” 3. Click on Read more »
Desired Capabilities in Selenium Webdriver Ware are Desired Capabilities? The Desired Capabilities in Selenium help set the browser properties for automating web application testing. The capabilities are stored as key-value pairs encoded in a JSON object. Read more »
Handling Webtable in Selenium //Handling Web table in Selenium In following example, we are reading the data from above web table and getting 2nd company price.. Read more »