├── .github ├── dependabot.yml └── workflows │ └── playwright.yml ├── .gitignore ├── CONTRIBUTING.md ├── README.md ├── canvas-preview.png ├── package.json ├── trace-with-groups.zip ├── v1.49.0-examples ├── README.md ├── new-features.spec.ts └── playwright.config.ts ├── v1.50.0-examples ├── README.md ├── new-features.spec.ts └── playwright.config.ts ├── v1.51.0-examples ├── README.md ├── new-features.spec.ts └── playwright.config.ts ├── v1.52.0-examples ├── README.md ├── new-features.spec.ts └── playwright.config.ts ├── v1.53.0-examples ├── README.md ├── new-features.spec.ts ├── new-features.spec.ts-snapshots │ └── my-screenshot-darwin.png └── playwright.config.ts ├── v1.54.0-examples ├── README.md ├── new-features.spec.ts └── playwright.config.ts ├── v1.55.0-examples ├── README.md ├── new-features.spec.ts └── playwright.config.ts └── v1.56.0-examples ├── README.md ├── new-features.spec.ts └── playwright.config.ts /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qa-gary-parker/playwright-release-notes-examples/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/playwright.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qa-gary-parker/playwright-release-notes-examples/HEAD/.github/workflows/playwright.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qa-gary-parker/playwright-release-notes-examples/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qa-gary-parker/playwright-release-notes-examples/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qa-gary-parker/playwright-release-notes-examples/HEAD/README.md -------------------------------------------------------------------------------- /canvas-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qa-gary-parker/playwright-release-notes-examples/HEAD/canvas-preview.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qa-gary-parker/playwright-release-notes-examples/HEAD/package.json -------------------------------------------------------------------------------- /trace-with-groups.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qa-gary-parker/playwright-release-notes-examples/HEAD/trace-with-groups.zip -------------------------------------------------------------------------------- /v1.49.0-examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qa-gary-parker/playwright-release-notes-examples/HEAD/v1.49.0-examples/README.md -------------------------------------------------------------------------------- /v1.49.0-examples/new-features.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qa-gary-parker/playwright-release-notes-examples/HEAD/v1.49.0-examples/new-features.spec.ts -------------------------------------------------------------------------------- /v1.49.0-examples/playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qa-gary-parker/playwright-release-notes-examples/HEAD/v1.49.0-examples/playwright.config.ts -------------------------------------------------------------------------------- /v1.50.0-examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qa-gary-parker/playwright-release-notes-examples/HEAD/v1.50.0-examples/README.md -------------------------------------------------------------------------------- /v1.50.0-examples/new-features.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qa-gary-parker/playwright-release-notes-examples/HEAD/v1.50.0-examples/new-features.spec.ts -------------------------------------------------------------------------------- /v1.50.0-examples/playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qa-gary-parker/playwright-release-notes-examples/HEAD/v1.50.0-examples/playwright.config.ts -------------------------------------------------------------------------------- /v1.51.0-examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qa-gary-parker/playwright-release-notes-examples/HEAD/v1.51.0-examples/README.md -------------------------------------------------------------------------------- /v1.51.0-examples/new-features.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qa-gary-parker/playwright-release-notes-examples/HEAD/v1.51.0-examples/new-features.spec.ts -------------------------------------------------------------------------------- /v1.51.0-examples/playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qa-gary-parker/playwright-release-notes-examples/HEAD/v1.51.0-examples/playwright.config.ts -------------------------------------------------------------------------------- /v1.52.0-examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qa-gary-parker/playwright-release-notes-examples/HEAD/v1.52.0-examples/README.md -------------------------------------------------------------------------------- /v1.52.0-examples/new-features.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qa-gary-parker/playwright-release-notes-examples/HEAD/v1.52.0-examples/new-features.spec.ts -------------------------------------------------------------------------------- /v1.52.0-examples/playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qa-gary-parker/playwright-release-notes-examples/HEAD/v1.52.0-examples/playwright.config.ts -------------------------------------------------------------------------------- /v1.53.0-examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qa-gary-parker/playwright-release-notes-examples/HEAD/v1.53.0-examples/README.md -------------------------------------------------------------------------------- /v1.53.0-examples/new-features.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qa-gary-parker/playwright-release-notes-examples/HEAD/v1.53.0-examples/new-features.spec.ts -------------------------------------------------------------------------------- /v1.53.0-examples/new-features.spec.ts-snapshots/my-screenshot-darwin.png: -------------------------------------------------------------------------------- 1 | This is a dummy screenshot file. -------------------------------------------------------------------------------- /v1.53.0-examples/playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qa-gary-parker/playwright-release-notes-examples/HEAD/v1.53.0-examples/playwright.config.ts -------------------------------------------------------------------------------- /v1.54.0-examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qa-gary-parker/playwright-release-notes-examples/HEAD/v1.54.0-examples/README.md -------------------------------------------------------------------------------- /v1.54.0-examples/new-features.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qa-gary-parker/playwright-release-notes-examples/HEAD/v1.54.0-examples/new-features.spec.ts -------------------------------------------------------------------------------- /v1.54.0-examples/playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qa-gary-parker/playwright-release-notes-examples/HEAD/v1.54.0-examples/playwright.config.ts -------------------------------------------------------------------------------- /v1.55.0-examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qa-gary-parker/playwright-release-notes-examples/HEAD/v1.55.0-examples/README.md -------------------------------------------------------------------------------- /v1.55.0-examples/new-features.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qa-gary-parker/playwright-release-notes-examples/HEAD/v1.55.0-examples/new-features.spec.ts -------------------------------------------------------------------------------- /v1.55.0-examples/playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qa-gary-parker/playwright-release-notes-examples/HEAD/v1.55.0-examples/playwright.config.ts -------------------------------------------------------------------------------- /v1.56.0-examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qa-gary-parker/playwright-release-notes-examples/HEAD/v1.56.0-examples/README.md -------------------------------------------------------------------------------- /v1.56.0-examples/new-features.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qa-gary-parker/playwright-release-notes-examples/HEAD/v1.56.0-examples/new-features.spec.ts -------------------------------------------------------------------------------- /v1.56.0-examples/playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qa-gary-parker/playwright-release-notes-examples/HEAD/v1.56.0-examples/playwright.config.ts --------------------------------------------------------------------------------