Category: Automation Framework
One Response
Leave a Reply
How to write Cucumber Script and its Step definition with Java?
November 30, 2018
We have discussed a lot on Cucumber and now we came at the position where it becomes mandatory to understand the technique to write cucumber script and its step …
How to create custom TestNG Report in Selenium with IReporter?
November 15, 2018
Reporting is one of the key components of the Automation framework. Every automation framework should be implemented with test reporting which gives detailed data of the testing processes. The …
TestNG Asserts- How to perform verification in Selenium?
November 14, 2018
You must be knowing that we categorize user extensions into three parts, which are- Actions, Accessors, and Assertions. The agenda of this tutorial is to explain you different TestNG …
TestNG @Factory annotation with @DataProvider in Selenium
November 13, 2018
This is one of the most important tutorials with respect to designing data-driven framework in the Selenium project. The combination of @Factory annotation and @DataProvider annotation helps in many …
How to Retry Failed Test Cases in Selenium using TestNG?
November 12, 2018
We have discussed lots more features of TestNG so far. Today we are going to discuss one of the most important features of the TestNG which helps to retry …
How to implement TestNG Listener using ITestListener in Selenium?
November 11, 2018
We have already discussed WebDriver Listeners. In that tutorial, we discussed all the fundamental concepts of the listeners. Just to remind you, Listeners listen to the events on starting …
How to perform tests in parallel execution in Selenium?
November 10, 2018
We define multiple test methods inside @Test annotation and all these definitions are done within a TestNG class. Thus, we can create multiple TestNG classes, hence, the multiple test …
How to handle Expected Exceptions in Selenium using TestNG?
November 9, 2018
There is a great kind of relationship between normal execution flow and Exception as Developer and Tester. It’s a very famous saying that Exception exists everywhere, so it exists …
How to create test dependencies in Selenium using TestNG?
November 7, 2018
When we perform software testing then we come across many scenarios in which one test case depends on another test case. Suppose if the independent test case fails then …
How to group tests in Selenium using TestNG?
November 6, 2018
Whenever there is any in deployment or release we generally do sanity testing to make sure critical code is working fine as expected. Similarly, we also do regression testing …
Automation Testing