0

could you tell me how to generate pretty html reports with screenshot ? After I run the test the "cucumber-reports.html" does not exist. Only "image.png" file is generated.

 package cucumber.Options;
import io.cucumber.junit.Cucumber;
import io.cucumber.junit.CucumberOptions;
import org.junit.runner.RunWith;
@RunWith(Cucumber.class)
@CucumberOptions(features="src/test/java/features",
 plugin = {"pretty", "html:target/reports/cucumber-reports.html"},
 glue= {"stepDefs"},
 stepNotifications = true,
 monochrome = true
 )
public class TestRunner {
}

Method that does screenshot

@After
 public void afterTest(Scenario scenario) throws IOException {
 if (!scenario.isFailed()) {
 // String destination = System.getProperty("user.dir") + "//src" + "//Screenshots" + scenario + ".png";
 final byte[] screenshot = ((TakesScreenshot) driver).getScreenshotAs(OutputType.BYTES);
 scenario.attach(screenshot, "image/png", scenario.getName());
 String directory = System.getProperty("user.dir") + "//target" + "//reports";
 File sourceFile = ((TakesScreenshot)driver).getScreenshotAs(OutputType.FILE);
 FileUtils.copyFile(sourceFile, new File(directory, "image.png"));
 }
 if (driver != null) {
 driver.quit();
 }
 }

pom file

<?xml version="1.0" encoding="UTF-8"?>
<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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
 <modelVersion>4.0.0</modelVersion>
 <groupId>org.example</groupId>
 <artifactId>Cucumber</artifactId>
 <version>1.0-SNAPSHOT</version>
 <properties>
 <maven.compiler.source>11</maven.compiler.source>
 <maven.compiler.target>11</maven.compiler.target>
 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
 </properties>
 <dependencies>
 <!-- https://mvnrepository.com/artifact/org.seleniumhq.selenium/selenium-java -->
 <dependency>
 <groupId>org.seleniumhq.selenium</groupId>
 <artifactId>selenium-java</artifactId>
 <version>4.4.0</version>
 </dependency>
 <!-- https://mvnrepository.com/artifact/org.testng/testng -->
 <dependency>
 <groupId>org.testng</groupId>
 <artifactId>testng</artifactId>
 <version>RELEASE</version>
 <scope>test</scope>
 </dependency>
 <!-- https://mvnrepository.com/artifact/io.cucumber/cucumber-java -->
 <dependency>
 <groupId>io.cucumber</groupId>
 <artifactId>cucumber-java</artifactId>
 <version>7.8.1</version>
 </dependency>
 <!-- https://mvnrepository.com/artifact/io.cucumber/cucumber-junit -->
 <dependency>
 <groupId>io.cucumber</groupId>
 <artifactId>cucumber-junit</artifactId>
 <version>7.8.1</version>
 <scope>test</scope>
 </dependency>
 <dependency>
 <groupId>junit</groupId>
 <artifactId>junit</artifactId>
 <version>4.12</version>
 <scope>compile</scope>
 </dependency>
 <!-- https://mvnrepository.com/artifact/org.assertj/assertj-core -->
 <dependency>
 <groupId>org.assertj</groupId>
 <artifactId>assertj-core</artifactId>
 <version>3.23.1</version>
 <scope>test</scope>
 </dependency>
 <!-- https://mvnrepository.com/artifact/io.github.bonigarcia/webdrivermanager -->
 <dependency>
 <groupId>io.github.bonigarcia</groupId>
 <artifactId>webdrivermanager</artifactId>
 <version>5.3.1</version>
 </dependency>
 <dependency>
 <groupId>org.projectlombok</groupId>
 <artifactId>lombok</artifactId>
 <version>RELEASE</version>
 <scope>test</scope>
 </dependency>
 <dependency>
 <groupId>org.reflections</groupId>
 <artifactId>reflections</artifactId>
 <version>0.9.11</version>
 </dependency>
 <!-- https://mvnrepository.com/artifact/com.google.guava/guava -->
 <dependency>
 <groupId>com.google.guava</groupId>
 <artifactId>guava</artifactId>
 <version>31.1-jre</version>
 </dependency>
 <!-- https://mvnrepository.com/artifact/org.seleniumhq.selenium/selenium-java -->
 <dependency>
 <groupId>org.seleniumhq.selenium</groupId>
 <artifactId>selenium-java</artifactId>
 <version>4.8.3</version>
 </dependency>
 <dependency>
 <groupId>org.projectlombok</groupId>
 <artifactId>lombok</artifactId>
 <version>1.18.26</version>
 <scope>compile</scope>
 </dependency>
 <!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-simple -->
 <dependency>
 <groupId>org.slf4j</groupId>
 <artifactId>slf4j-simple</artifactId>
 <version>2.0.7</version>
 <scope>test</scope>
 </dependency>
 <!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-api -->
 <dependency>
 <groupId>org.slf4j</groupId>
 <artifactId>slf4j-api</artifactId>
 <version>2.0.7</version>
 </dependency>
 <!-- https://mvnrepository.com/artifact/org.springframework/spring-core -->
 <!-- https://mvnrepository.com/artifact/org.springframework/spring-core -->
 <!-- https://mvnrepository.com/artifact/com.opencsv/opencsv -->
 <dependency>
 <groupId>com.opencsv</groupId>
 <artifactId>opencsv</artifactId>
 <version>5.7.1</version>
 </dependency>
 <!-- https://mvnrepository.com/artifact/picocontainer/picocontainer -->
 <!-- https://mvnrepository.com/artifact/picocontainer/picocontainer -->
 <!-- https://mvnrepository.com/artifact/picocontainer/picocontainer -->
 <!-- https://mvnrepository.com/artifact/io.cucumber/cucumber-picocontainer -->
 <!-- https://mvnrepository.com/artifact/picocontainer/picocontainer -->
 <!-- https://mvnrepository.com/artifact/io.cucumber/cucumber-picocontainer -->
 <!-- https://mvnrepository.com/artifact/picocontainer/picocontainer -->
 <dependency>
 <groupId>picocontainer</groupId>
 <artifactId>picocontainer</artifactId>
 <version>1.2</version>
 </dependency>
 <!-- https://mvnrepository.com/artifact/de.monochromata.cucumber/reporting-plugin -->
 <!-- https://mvnrepository.com/artifact/io.cucumber/cucumber-html -->
 <dependency>
 <groupId>io.cucumber</groupId>
 <artifactId>cucumber-html</artifactId>
 <version>0.2.7</version>
 </dependency>
 <!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-surefire-plugin -->
 <!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-surefire-plugin -->
 <dependency>
 <groupId>org.apache.maven.plugins</groupId>
 <artifactId>maven-surefire-plugin</artifactId>
 <version>3.0.0</version>
 </dependency>
 <!-- https://mvnrepository.com/artifact/io.cucumber/cucumber-java8 -->
 <!-- https://mvnrepository.com/artifact/io.cucumber/cucumber-core -->
 <dependency>
 <groupId>io.cucumber</groupId>
 <artifactId>cucumber-core</artifactId>
 <version>7.11.2</version>
 </dependency>
 </dependencies>
</project>
asked Apr 30, 2023 at 17:23

1 Answer 1

0

First of all we should take screenshot on the failure. For passed test cases its not required.

And use below code. Why are you coping the screenshot?

@After()
 public void tearDown(Scenario scenario){
 if (scenario.isFailed()) {
 byte[] screenshot = ((TakesScreenshot) driver).getScreenshotAs(OutputType.BYTES);
 scenario.attach(screenshot, "image/png", "Screenshot");
 }
}
answered May 6, 2023 at 7:58

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.