Skip to content

Instantly share code, notes, and snippets.

@SarahElson
Created June 14, 2024 12:50
Show Gist options
  • Save SarahElson/ae9533c2d5872522a183be3c52c44b6a to your computer and use it in GitHub Desktop.
Save SarahElson/ae9533c2d5872522a183be3c52c44b6a to your computer and use it in GitHub Desktop.
How To Generate Extent Reports In Selenium
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>ExtentReportSelenium</groupId>
<artifactId>ExtentReportSelenium</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>ExtentReportSelenium</name>
<dependencies>
<dependency>
<groupId>com.aventstack</groupId>
<artifactId>extentreports</artifactId>
<version>5.1.1</version>
</dependency>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<version>4.19.1</version>
</dependency>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>7.9.0</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment