mochawesome-report-generator icon indicating copy to clipboard operation
mochawesome-report-generator copied to clipboard

Unable to copy values directly from the html report

Open andrexello opened this issue 4 years ago • 0 comments

Hi there, first of all great job on this project, really useful for my team.

I have it set up to generate a single html report from multiple json files created for each spec and merged with mochawesome-merge (v. 2.1.0). The inline option is set to true.

The version of mochawesome-report-generator my team uses is 4.0.1. The version of mochawesome we use is 4.1.0.

We generate the reports using the following script:

const marge = require('mochawesome-report-generator');
const { merge } = require('mochawesome-merge');
const options = { inline: true }

merge().then(report => marge.create(report, options));

Our tests run on Windows Server 2012 R2.

The issue is rather small, just wanted to point it out: since updating mochawesome-report-generator to version 4.0.1 (from v. 3.1.5) I noticed I can no longer simply highlight and copy values from the report (for example, scenario names). The workaround is to copy the values from the html source code instead so not a big deal, just wondering what the change was and if it was intentional.

andrexello avatar Dec 17 '19 19:12 andrexello