Extent Reports:
How to add lightbox to your extent reports?
Lightbox in Javascript: A typical lightbox image display. Lightbox is a JavaScript library that displays images and videos by filling the screen, and dimming out the rest of the web page. (Source: Wikipedia0
Issue while using Extent reports:
For failed cases screenshot will be captured and whenever user opens report.html for failed cases we can see images (local machine). Now if user shares the report to other person, if other person...
Sunday, 8 January 2017
Sunday, 23 October 2016


Step 1: Download MicrosoftWebDriver.exe from "https://developer.microsoft.com/en-us/microsoft-edge/tools/webdriver/ "
Below is the sample code to launch edge browser using Microsoft driver
package com.Sample;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.edge.EdgeDriver;
import org.testng.annotations.Test;
public class EdgeBrowserTest {
String driverPath = "Path Microsoft edge driver"; // D:\\microsoftdriver\\
public WebDriver driver;
@Test(priority=0)
public void launchEdgeBrowser()...


Below is the sample code to launch web browser in Firefox using selenium 3.0
package com.sample;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.testng.annotations.Test;
public class SampleTest {
String driverPath = "<path to gecko driver executable>"; // D:\\geckofolder\\
public WebDriver driver;
@Test
public void launchBrowser() {
System.out.println("===== launching firefox browser ==== ");
System.setProperty("webdriver.gecko.driver",...


Step 1: Download the geckodriver from ' https://github.com/mozilla/geckodriver/releases '
Step 2: Now you need to specify the system property with the path
System.setProperty("webdriver.gecko.driver","path of geckodriver.exe"); WebDriver driver = new FirefoxDriver();
Your done...&nbs...
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...
Subscribe to:
Posts (Atom)