├── .github └── workflows │ └── test.yml ├── .gitignore ├── LICENSE ├── README.md ├── package.json ├── test ├── base │ ├── cookies.js │ ├── example.js │ ├── iframe.js │ ├── jest.js │ ├── popup.js │ ├── sleep.js │ └── vue.js ├── comparison-test.js ├── expected │ ├── cookies.js │ ├── example.js │ ├── iframe.js │ ├── jest.js │ ├── popup.js │ ├── sleep.js │ └── vue.js └── output │ ├── cookies.js │ ├── example.js │ ├── iframe.js │ ├── jest.js │ ├── popup.js │ ├── sleep.js │ └── vue.js └── transform.js /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkly/puppeteer-to-playwright/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkly/puppeteer-to-playwright/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkly/puppeteer-to-playwright/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkly/puppeteer-to-playwright/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkly/puppeteer-to-playwright/HEAD/package.json -------------------------------------------------------------------------------- /test/base/cookies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkly/puppeteer-to-playwright/HEAD/test/base/cookies.js -------------------------------------------------------------------------------- /test/base/example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkly/puppeteer-to-playwright/HEAD/test/base/example.js -------------------------------------------------------------------------------- /test/base/iframe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkly/puppeteer-to-playwright/HEAD/test/base/iframe.js -------------------------------------------------------------------------------- /test/base/jest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkly/puppeteer-to-playwright/HEAD/test/base/jest.js -------------------------------------------------------------------------------- /test/base/popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkly/puppeteer-to-playwright/HEAD/test/base/popup.js -------------------------------------------------------------------------------- /test/base/sleep.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkly/puppeteer-to-playwright/HEAD/test/base/sleep.js -------------------------------------------------------------------------------- /test/base/vue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkly/puppeteer-to-playwright/HEAD/test/base/vue.js -------------------------------------------------------------------------------- /test/comparison-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkly/puppeteer-to-playwright/HEAD/test/comparison-test.js -------------------------------------------------------------------------------- /test/expected/cookies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkly/puppeteer-to-playwright/HEAD/test/expected/cookies.js -------------------------------------------------------------------------------- /test/expected/example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkly/puppeteer-to-playwright/HEAD/test/expected/example.js -------------------------------------------------------------------------------- /test/expected/iframe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkly/puppeteer-to-playwright/HEAD/test/expected/iframe.js -------------------------------------------------------------------------------- /test/expected/jest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkly/puppeteer-to-playwright/HEAD/test/expected/jest.js -------------------------------------------------------------------------------- /test/expected/popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkly/puppeteer-to-playwright/HEAD/test/expected/popup.js -------------------------------------------------------------------------------- /test/expected/sleep.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkly/puppeteer-to-playwright/HEAD/test/expected/sleep.js -------------------------------------------------------------------------------- /test/expected/vue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkly/puppeteer-to-playwright/HEAD/test/expected/vue.js -------------------------------------------------------------------------------- /test/output/cookies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkly/puppeteer-to-playwright/HEAD/test/output/cookies.js -------------------------------------------------------------------------------- /test/output/example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkly/puppeteer-to-playwright/HEAD/test/output/example.js -------------------------------------------------------------------------------- /test/output/iframe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkly/puppeteer-to-playwright/HEAD/test/output/iframe.js -------------------------------------------------------------------------------- /test/output/jest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkly/puppeteer-to-playwright/HEAD/test/output/jest.js -------------------------------------------------------------------------------- /test/output/popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkly/puppeteer-to-playwright/HEAD/test/output/popup.js -------------------------------------------------------------------------------- /test/output/sleep.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkly/puppeteer-to-playwright/HEAD/test/output/sleep.js -------------------------------------------------------------------------------- /test/output/vue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkly/puppeteer-to-playwright/HEAD/test/output/vue.js -------------------------------------------------------------------------------- /transform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/checkly/puppeteer-to-playwright/HEAD/transform.js --------------------------------------------------------------------------------