Friday, 24 April 2015

ExtentReports (by Anshoo Arora) is a HTML reporting library for Selenium WebDriver for Java and creates easy to use, attractive reports. It shows test and step summary, test steps and status in a toggle view for quick analysis. View ExtentReports sample here. Index What’s new in version 1.4 Owner / Developers Contributors Download Maven / pom.xml Basic Usage Initializing Report Creating...

Saturday, 18 April 2015

What is Selenium Grid? Selenium Grid is a part of the Selenium Suite that specializes on running multiple tests across different browsers, operating systems, and machines in parallel. Selenium Grid has 2 versions - the older Grid 1 and the newer Grid 2. We will only focus on Grid 2 because Grid 1 is gradually being deprecated by the Selenium Team. Selenium Grid uses a hub-node concept...
How to Use the Project: Two important classes which we will be using ATUReportsListener - A TestNG Listener ConfigurationListener - A TestNG Listener MethodListener - A TestNG Listener ATUReports - Used for logging the report data The above listeners must be called in the TestNG script or used in the testng.xml file. Using The Listener in a TestNG Script: In a TestNG Script, use the Listener as import atu.testng.reports.listeners.ATUReportsListener; import...