8.0.7 • Published 10 months ago

@rpii/wdio-html-reporter-pdf v8.0.7

Weekly downloads
14
License
MIT
Repository
github
Last release
10 months ago

wdio-html-reporter-pdf

Generate a pdf from an html-report.
Requires version 8.1.0 or later of wdio-html-nice-reporter to generate the html report

Lock the puppeteer version to prevent issues

Fixes to render a very large html file

Converted to ES Module

bug fix for expanding sections in new puppeteer

Updated for module compatibility with webdriver 8

Newest Features:

Upgrade: Set timeout to 0 to prevent timeouts
Upgrade: update puppeteer version.  
Upgrade: rewritten in typescript, update puppeteer.  

Installation

The easiest way is to keep the @rpii/wdio-html-reporter-pdf as a devDependency in your package.json:

{
  "devDependencies": {
    "@rpii/wdio-html-reporter-pdf": "~7.0.0"
  }
}

Updates

Updated version of puppeteer to get rid of issues.

Configuration

Add a file called make-pdf.ts in the root of the project.

There are difficulties in puppeteer if you try to integrate the code into wdio.conf.js.

The following code shows a simple way to add as a post build action. you can invoke it from a pipeline if you are using jenkins.

// babel version
const path = require("path") ;
const fs = require("fs-extra") ;

let printPdf = require('@rpii/wdio-html-reporter-pdf').default ;

(async () => {
    let args = process.argv.slice(2) ;
    let reportName = args[0] ? args[0] : "master-report";

    try {

        // need full paths
        let htmlReportFile = path.resolve(__dirname, 'reports/html-reports/' + reportName + '.html');
        let pdfFile = path.resolve(__dirname, 'reports/' + reportName + '.pdf');
        //for linux you will need these options
        let options = ['--no-sandbox', '--disable-gpu', '--disable-extensions'];
        await printPdf(htmlReportFile, pdfFile, options);
    } catch (ex)  {
        console.error(ex);
    }
})();
    

Add a line to your package.json under scripts

    "pdf": "node make-pdf.ts"

To use an already installed chrome: Add a line to your package.json under scripts

    "pdf-chrome-linux": "node make-pdf.ts /usr/bin/google-chrome"

Usage

Run after completing a build.

If you need to specify a path to chrome, that is the fourth parameter.

8.0.7

10 months ago

8.0.6

10 months ago

8.0.5

10 months ago

8.0.4

10 months ago

8.0.1

10 months ago

8.0.3

10 months ago

8.0.2

10 months ago

8.0.0

2 years ago

7.0.4-beta2

2 years ago

7.0.4-beta

2 years ago

7.0.4

2 years ago

7.0.3

3 years ago

7.0.0

3 years ago

7.0.1

3 years ago

6.3.0

4 years ago

6.3.1

4 years ago

6.2.3

4 years ago

6.2.1

4 years ago

6.2.2

4 years ago

6.2.0

4 years ago

6.1.5

4 years ago

6.1.4

4 years ago

6.1.3

4 years ago

6.1.2

4 years ago

6.1.1

4 years ago

6.1.0

4 years ago