├── .editorconfig ├── .eslintrc.js ├── .eslintrc.prepublish.js ├── .gitignore ├── .npmignore ├── .prettierrc.js ├── .vscode └── extensions.json ├── AI ├── CODE_OF_CONDUCT.md ├── LICENSE.md ├── README.md ├── README_TEMPLATE.md ├── docker-compose.yml ├── dockerfile ├── gulpfile.js ├── index.js ├── nodes ├── playwright │ ├── Playwright.node.json │ ├── Playwright.node.ts │ ├── config.ts │ ├── operations.ts │ ├── playwright.svg │ ├── types.ts │ └── utils.ts └── scripts │ ├── setup-browsers.ts │ └── test-setup.ts ├── package.json ├── pnpm-lock.yaml ├── setup-playwright.sh ├── tsconfig.json └── tslint.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toema/n8n-playwright/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toema/n8n-playwright/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.eslintrc.prepublish.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toema/n8n-playwright/HEAD/.eslintrc.prepublish.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toema/n8n-playwright/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toema/n8n-playwright/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toema/n8n-playwright/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toema/n8n-playwright/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /AI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toema/n8n-playwright/HEAD/AI -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toema/n8n-playwright/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toema/n8n-playwright/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toema/n8n-playwright/HEAD/README.md -------------------------------------------------------------------------------- /README_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toema/n8n-playwright/HEAD/README_TEMPLATE.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toema/n8n-playwright/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toema/n8n-playwright/HEAD/dockerfile -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toema/n8n-playwright/HEAD/gulpfile.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toema/n8n-playwright/HEAD/index.js -------------------------------------------------------------------------------- /nodes/playwright/Playwright.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toema/n8n-playwright/HEAD/nodes/playwright/Playwright.node.json -------------------------------------------------------------------------------- /nodes/playwright/Playwright.node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toema/n8n-playwright/HEAD/nodes/playwright/Playwright.node.ts -------------------------------------------------------------------------------- /nodes/playwright/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toema/n8n-playwright/HEAD/nodes/playwright/config.ts -------------------------------------------------------------------------------- /nodes/playwright/operations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toema/n8n-playwright/HEAD/nodes/playwright/operations.ts -------------------------------------------------------------------------------- /nodes/playwright/playwright.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toema/n8n-playwright/HEAD/nodes/playwright/playwright.svg -------------------------------------------------------------------------------- /nodes/playwright/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toema/n8n-playwright/HEAD/nodes/playwright/types.ts -------------------------------------------------------------------------------- /nodes/playwright/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toema/n8n-playwright/HEAD/nodes/playwright/utils.ts -------------------------------------------------------------------------------- /nodes/scripts/setup-browsers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toema/n8n-playwright/HEAD/nodes/scripts/setup-browsers.ts -------------------------------------------------------------------------------- /nodes/scripts/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toema/n8n-playwright/HEAD/nodes/scripts/test-setup.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toema/n8n-playwright/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toema/n8n-playwright/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /setup-playwright.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toema/n8n-playwright/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toema/n8n-playwright/HEAD/tslint.json --------------------------------------------------------------------------------