├── .gitignore ├── README.md ├── package.json ├── run.js └── run2.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pureZjr/puppeteerDemo/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pureZjr/puppeteerDemo/HEAD/package.json -------------------------------------------------------------------------------- /run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pureZjr/puppeteerDemo/HEAD/run.js -------------------------------------------------------------------------------- /run2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pureZjr/puppeteerDemo/HEAD/run2.js --------------------------------------------------------------------------------