├── .circleci └── config.yml ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ └── config.yml ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── test.yml ├── .gitignore ├── .gitlab-ci.yml ├── .gitpod.yml ├── .nvmrc ├── .sauce └── config.yml ├── .sauceignore ├── Jenkinsfile ├── LICENSE ├── README.md ├── assets └── playwright-example.gif ├── azure-pipelines.yml ├── examples ├── README.md └── cucumber │ ├── .sauce │ └── config.yml │ ├── .sauceignore │ ├── README.md │ ├── features │ ├── greeting.feature │ └── support │ │ └── steps.ts │ ├── package-lock.json │ ├── package.json │ └── tsconfig.json ├── package.json ├── playwright.config.js └── tests ├── demo-todo-app.spec.js └── example.spec.js /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saucelabs/saucectl-playwright-example/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @saucelabs/devx 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saucelabs/saucectl-playwright-example/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saucelabs/saucectl-playwright-example/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saucelabs/saucectl-playwright-example/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saucelabs/saucectl-playwright-example/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saucelabs/saucectl-playwright-example/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.gitpod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saucelabs/saucectl-playwright-example/HEAD/.gitpod.yml -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v22 2 | -------------------------------------------------------------------------------- /.sauce/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saucelabs/saucectl-playwright-example/HEAD/.sauce/config.yml -------------------------------------------------------------------------------- /.sauceignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saucelabs/saucectl-playwright-example/HEAD/.sauceignore -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saucelabs/saucectl-playwright-example/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saucelabs/saucectl-playwright-example/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saucelabs/saucectl-playwright-example/HEAD/README.md -------------------------------------------------------------------------------- /assets/playwright-example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saucelabs/saucectl-playwright-example/HEAD/assets/playwright-example.gif -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saucelabs/saucectl-playwright-example/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saucelabs/saucectl-playwright-example/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/cucumber/.sauce/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saucelabs/saucectl-playwright-example/HEAD/examples/cucumber/.sauce/config.yml -------------------------------------------------------------------------------- /examples/cucumber/.sauceignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /examples/cucumber/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saucelabs/saucectl-playwright-example/HEAD/examples/cucumber/README.md -------------------------------------------------------------------------------- /examples/cucumber/features/greeting.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saucelabs/saucectl-playwright-example/HEAD/examples/cucumber/features/greeting.feature -------------------------------------------------------------------------------- /examples/cucumber/features/support/steps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saucelabs/saucectl-playwright-example/HEAD/examples/cucumber/features/support/steps.ts -------------------------------------------------------------------------------- /examples/cucumber/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saucelabs/saucectl-playwright-example/HEAD/examples/cucumber/package-lock.json -------------------------------------------------------------------------------- /examples/cucumber/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saucelabs/saucectl-playwright-example/HEAD/examples/cucumber/package.json -------------------------------------------------------------------------------- /examples/cucumber/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saucelabs/saucectl-playwright-example/HEAD/examples/cucumber/tsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saucelabs/saucectl-playwright-example/HEAD/package.json -------------------------------------------------------------------------------- /playwright.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saucelabs/saucectl-playwright-example/HEAD/playwright.config.js -------------------------------------------------------------------------------- /tests/demo-todo-app.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saucelabs/saucectl-playwright-example/HEAD/tests/demo-todo-app.spec.js -------------------------------------------------------------------------------- /tests/example.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saucelabs/saucectl-playwright-example/HEAD/tests/example.spec.js --------------------------------------------------------------------------------