Skip to content

Simple repo to showcase how to use Puppeteer for end-to-end testing of Electron application.

License

Notifications You must be signed in to change notification settings

peterdanis/electron-puppeteer-demo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Electron + Puppeteer (and optionally Jest)

Simple repo to showcase how to use Puppeteer for end-to-end testing of Electron application. For further information see Puppeteer API docs here: https://github.com/puppeteer/puppeteer/blob/master/docs/api.md

For Electron using puppeteer-core package is recommended instead of standard puppeteer package, as the -core version does not download Chromium by default.

To connect Electron and Puppeteer together you have to start Electron app yourself (via child_process.spawn)...

const electron = require("electron");
const puppeteer = require("puppeteer-core");
const { spawn } = require("child_process");
const port = 9200;

spawn(electron, [".", `--remote-debugging-port=${port}`], { shell: true });

...and then connect to it via puppeteer.connect method

(async () => {
  await puppeteer.connect({
        browserURL: `http://localhost:${port}`,
        defaultViewport: { width: 1000, height: 600 }
      });
})()

For full example please see https://github.com/peterdanis/electron-puppeteer-demo/blob/master/tests/simpleNodeTest.js

Test status

Github Actions badge

Currently the tests are being run for Electron versions from 18 to beta on Linux, MacOS and Windows. Go to test results

How to use

  • clone repo and "cd" into it
  • run npm i or yarn
  • run npm run test-no-jest to run test without Jest

or

  • run npm run test or yarn test to run test with Jest

About

Simple repo to showcase how to use Puppeteer for end-to-end testing of Electron application.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published