Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Allure report: nothing shown in Chrome

I'm trying to use Allure-framework to generate a report for my Selenium WebDriver tests. I use JUnit framework and allure-maven-plugin with version 1.3.9 of Allure. I run tests with mvn test then generate the report using mvn site. I see generated report in target/site/allure-maven-plugin/ directory. When I open index.html page with Firefox it works normally. However when doing the same thing in Chrome or Safari I see nothing.

What's wrong? Am I missing something? My pom.xml file is located here.

like image 795
just-boris Avatar asked Jun 02 '14 14:06

just-boris


3 Answers

This problem is related to default Webkit security settings which forbid doing Ajax requests on the local filesystem. You have at least two possible solutions:

  1. Serve index.html with some web-server like Nginx or Apache. This will emulate remote website and thus trick your browser. With Allure CLI 2.0+ this can be done using the following command:

$ allure report open

  1. Use --allow-file-access-from-files Chrome flag. See details in this question.
like image 185
vania-pooh Avatar answered Sep 27 '22 22:09

vania-pooh


To use allure report in chrome, you have two options:

  • Use mvn allure:serve target. It will generate the report and open a tab in Chrome (if default browser)
  • Generate the report using mvn allure:report target and serve the site your self, using any http server. if you have node you can use http-server for example npm install http-server -g and then http-server target/site/allure-maven-plugin)

DO NOT use --allow-file-access-from-files flag, is it DANDEGEROUS

like image 41
sahlouls Avatar answered Sep 27 '22 22:09

sahlouls


To open your report in Chrome browser use the below command in cmd prompt

allure open path_to_allure_report_folder

or use the below command if above command does not work

allure serve path_to_allure_report_folder

This will open your report.

like image 24
Suhail Ahmed Avatar answered Sep 27 '22 20:09

Suhail Ahmed