Skip to content

kartojal/testcafe-browser-provider-puppeteer

 
 

Repository files navigation

testcafe-browser-provider-puppeteer

Build Status npm version

This is the puppeteer/chromium browser provider plugin for TestCafe. It allows to run tastcafe e2e tests headless in CI pipeline without any external dependency like xvfb, since everything what is needed is installed via npm.

Install

npm install --save-dev testcafe-browser-provider-puppeteer

Usage

When you run tests from the command line, use the provider name when specifying browsers:

testcafe puppeteer 'path/to/test/file.js'

When you use API, pass the provider name to the browsers() method:

testCafe
    .createRunner()
    .src('path/to/test/file.js')
    .browsers('puppeteer')
    .run();

Troubleshooting

On same older linux distributions, fails chromium due to sandbox issues - see this.

You can try in such case running the plugin without sandbox restriction

testcafe puppeteer:no_sandbox 'path/to/test/file.js'

Author

Jacek Dobosz

About

This is the puppeteer browser provider plugin for testcafe

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 100.0%