puppeteer-simple-cli-cores
v1.0.45
Published
## Status
Readme
Puppeteer-simple-cli-cores
Status
Puppeteer-simple-cli is a really simple puppeteer tool for End to End test.
Get Started
npm i puppeteer-simple-cli-coresBasic usage
Create src/main.config.js and addition config
module.exports = {
targetURL: '', // It's your target URL
pipelines: [ // Execute your situation in order
{
title: 'Situation description',
path: 'Your script path'
}
],
config: { headless: false, slowMo: 50, defaultViewport: null }, // Puppeteer config
retry: 1, // Number of retries
getClientLog: false // Whether to accept client log
};