Releases: guidepup/guidepup-playwright
Release list
0.17.0
What's Changed
Full Changelog: 0.16.3...0.17.0
Details
Introduce Playwright helper test fixture for driving screen readers via a single API that detects the default screen reader for the current OS.
import { screenReaderTest as test } from "@guidepup/playwright";
// screenReader is controlling VoiceOver on macOS and NVDA on windows, using a single API.
test("I can navigate the Guidepup documentation site", async ({ page, screenReader }) => {
await page.goto("https://www.guidepup.dev", {
waitUntil: "load",
});
await screenReader.navigateToWebContent();
await screenReader.next();
await screenReader.next();
await screenReader.act();
});Breaking change as relies on a new min version of 0.27.0 for @guidepup/guidepup.
0.16.3
0.16.1
0.16.0
What's Changed
- fix: add pageTitle to focus browser window, no need for browser name by @nmerget in #32
- BREAKING: feat: default capture to "initial", allow logs to be preserved in
navigateToWebContent, improvenavigateToWebContentcommand by @cmorten in #34
New Contributors
Full Changelog: 0.15.0...0.16.0
0.15.0
What's Changed
- refactor: updating GH actions by @mfranzke in #24
- chore(deps): bump js-yaml from 4.1.0 to 4.1.1 by @dependabot[bot] in #28
- fix: support new name for Chromium by @cmorten in #33
BREAKING: minimum version of @playwright/test is now 1.57.0 following Playwright's update from "Chromium" to "Google Chrome For Testing", see https://playwright.dev/docs/release-notes#chrome-for-testing. Users on @playwright/test@<1.57.0 should continue to use @guidepup/playwright@0.14.2 for now until we find a backward compatible solution.
New Contributors
Full Changelog: 0.14.2...0.15.0
0.14.2
What's Changed
- chore(deps): bump cross-spawn from 7.0.3 to 7.0.6 by @dependabot in #20
- chore: ensure can use correct peer dependency range
Full Changelog: 0.14.1...0.14.2
0.14.1
What's Changed
- Update README.md by @cmorten in #18
- chore(deps): bump micromatch from 4.0.7 to 4.0.8 by @dependabot in #19
- chore(deps): misc package upgrades
Full Changelog: 0.14.0...0.14.1
0.14.0
What's Changed
- chore(deps): bump braces from 3.0.2 to 3.0.3 by @dependabot in #16
- feat: allow setting of start options by @jlp-craigmorten in #17
- feat: drop support for MacOS 11 Big Sur
Full Changelog: 0.13.2...0.14.0
0.13.2
What's Changed
- test: run ci against macos-14 by @jlp-craigmorten in #14
- test: bring macos-13 example recordings back by @jlp-craigmorten in #15
New Contributors
- @jlp-craigmorten made their first contribution in #14
Full Changelog: 0.13.1...0.13.2