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 »
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 »
Actions class in Selenium
To test an application, one needs to perform a number of user actions on it. To perform any operations on the web application such as double-click, selecting drop-down boxes, etc. the Read more »