├── .github └── workflows │ └── playwright.yml ├── .gitignore ├── .vscode └── extensions.json ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── SECURITY.md ├── SUPPORT.md ├── hars ├── 25cc30e4a440111abd545551113b7bf2e2cad209.bin └── fruits.har ├── package.json ├── playwright.config.ts └── tests ├── api-mocking ├── api-mocking.spec.ts └── readme.md ├── boxed-steps-pom ├── boxed-step-pom.spec.ts ├── boxed-step-pom.ts └── readme.md ├── boxed-steps ├── boxed-step.spec.ts └── readme.md └── clock ├── clock.spec.ts └── readme.md /.github/workflows/playwright.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-examples/HEAD/.github/workflows/playwright.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-examples/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-examples/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-examples/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-examples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-examples/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-examples/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-examples/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /hars/25cc30e4a440111abd545551113b7bf2e2cad209.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-examples/HEAD/hars/25cc30e4a440111abd545551113b7bf2e2cad209.bin -------------------------------------------------------------------------------- /hars/fruits.har: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-examples/HEAD/hars/fruits.har -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-examples/HEAD/package.json -------------------------------------------------------------------------------- /playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-examples/HEAD/playwright.config.ts -------------------------------------------------------------------------------- /tests/api-mocking/api-mocking.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-examples/HEAD/tests/api-mocking/api-mocking.spec.ts -------------------------------------------------------------------------------- /tests/api-mocking/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-examples/HEAD/tests/api-mocking/readme.md -------------------------------------------------------------------------------- /tests/boxed-steps-pom/boxed-step-pom.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-examples/HEAD/tests/boxed-steps-pom/boxed-step-pom.spec.ts -------------------------------------------------------------------------------- /tests/boxed-steps-pom/boxed-step-pom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-examples/HEAD/tests/boxed-steps-pom/boxed-step-pom.ts -------------------------------------------------------------------------------- /tests/boxed-steps-pom/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-examples/HEAD/tests/boxed-steps-pom/readme.md -------------------------------------------------------------------------------- /tests/boxed-steps/boxed-step.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-examples/HEAD/tests/boxed-steps/boxed-step.spec.ts -------------------------------------------------------------------------------- /tests/boxed-steps/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-examples/HEAD/tests/boxed-steps/readme.md -------------------------------------------------------------------------------- /tests/clock/clock.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-examples/HEAD/tests/clock/clock.spec.ts -------------------------------------------------------------------------------- /tests/clock/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-examples/HEAD/tests/clock/readme.md --------------------------------------------------------------------------------