Webdriver Tutorial

WebDriverWait Example

In many selenium test cases, you need to use the WebDriverWait class. For example, when you need to check whether a web element is visible or not, clickable or not, enabled or disabled before performing any actions. This article will show you how to use WebDriverWait class to achieve the above tasks with examples.

Selenium Webdriver Page Load Synchronization

When you run selenium test scripts, you may encounter “No Such Element Exception”, “Element Not Found Exception” or “Stale Element Reference Exception”. Some times it is because of the web page element which need to be used is not loaded completely. In selenium, there has below two method to resolve these kind of issues.

Parallel Cross Browser Testing In Selenium Using TestNG

Cross Browser Testing in selenium is used to check whether your web application works correctly or not in various web browsers (Chrome, Firefox, Internet Explorer, etc). You can perform this functional test through various methods, such as Run Selenium Testing Script In Cloud, set up selenium grid, and each node test one web browser. But …

Parallel Cross Browser Testing In Selenium Using TestNG Read More »

Selenium Keyword Driven And Hybrid Framework

There are three kinds of test Frameworks in Selenium testing. They are Keyword Driven Framework, Data Driven Framework, and Hybrid Framework. With these frameworks, we can separate java code and test data in the test program. So your java code is more readable and reusable, the automation script is more portable, and script maintenance cost …

Selenium Keyword Driven And Hybrid Framework Read More »

WebDriver Event Listener : Take Screenshot On Exception

When you execute selenium automation testing scripts, there are a lot of times that you want to do something when an event happened. For example: Take screenshots when an exception occurred. Monitor and track the web element status after some action takes place. Log data before or after an action. Log the navigation url to check …

WebDriver Event Listener : Take Screenshot On Exception Read More »

Index