Skip to content

Commit cb97fa3

Browse files
authored
chore: roll Playwright to 1.60.0-alpha-1777575331000 (#392)
1 parent 37c3028 commit cb97fa3

5 files changed

Lines changed: 22 additions & 22 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ playwright-cli video-start [filename] # start video recording
249249
playwright-cli video-chapter <title> # add a chapter marker to the video
250250
playwright-cli video-stop # stop video recording
251251
playwright-cli show # open the visual dashboard
252-
playwright-cli annotate # launch dashboard for UI review / design feedback
252+
playwright-cli show --annotate # launch dashboard with annotation prompt
253253
playwright-cli generate-locator <ref> # generate a playwright locator for an element
254254
playwright-cli highlight <ref> # show a persistent highlight overlay
255255
playwright-cli highlight <ref> --style= # highlight with a custom CSS style

package-lock.json

Lines changed: 13 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@
1818
"test": "playwright test"
1919
},
2020
"devDependencies": {
21-
"@playwright/test": "1.60.0-alpha-1777566615000",
21+
"@playwright/test": "1.60.0-alpha-1777575331000",
2222
"@types/node": "^25.2.1"
2323
},
2424
"dependencies": {
25-
"playwright": "1.60.0-alpha-1777566615000"
25+
"playwright": "1.60.0-alpha-1777575331000"
2626
},
2727
"bin": {
2828
"playwright-cli": "playwright-cli.js"

skills/playwright-cli/SKILL.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -163,8 +163,8 @@ playwright-cli video-start video.webm
163163
playwright-cli video-chapter "Chapter Title" --description="Details" --duration=2000
164164
playwright-cli video-stop
165165

166-
# launch the dashboard for UI review / design feedback — user annotates the page, you receive the annotated screenshot, snapshot, and notes
167-
playwright-cli annotate
166+
# launch the dashboard with annotation prompt to ask the user for input
167+
playwright-cli show --annotate
168168

169169
# generate a Playwright locator for an element from its ref or selector
170170
playwright-cli generate-locator e5 --raw
@@ -367,11 +367,11 @@ playwright-cli close
367367

368368
## Example: Interactive session
369369

370-
Ask the user for UI review or design feedback. The user draws boxes on the live page and types comments; you receive the annotated screenshot, the snapshot of the marked region, and the user's notes. Use this whenever the user asks for "UI review", "design feedback", or to "ask the user what they think / want / mean":
370+
Ask the user to annotate the UI. User can provide contextual tasks or ask contextual questions using annotations:
371371

372372
```bash
373373
playwright-cli open https://example.com
374-
playwright-cli annotate
374+
playwright-cli show --annotate
375375
```
376376

377377
## Specific tasks

skills/playwright-cli/references/spec-driven-testing.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ playwright-cli resume # resume so that seed test runs fully
8888
playwright-cli snapshot # inventory of interactive elements
8989
playwright-cli click e5 # follow a flow
9090
playwright-cli eval "location.href" # read URL / state
91-
playwright-cli annotate # ask the user to point at something
91+
playwright-cli show --annotate # ask the user to point at something
9292
```
9393

9494
Map out:
@@ -262,7 +262,7 @@ The test is paused at the start. Step forward or run to until just before the fa
262262
playwright-cli snapshot # did the element change / move / rename?
263263
playwright-cli console # app-side errors?
264264
playwright-cli network # failed request? wrong payload?
265-
playwright-cli annotate # ask the user to point somewhere
265+
playwright-cli show --annotate # ask the user to point somewhere
266266
```
267267

268268
Common causes: selector drift, new wrapper element, label/ARIA rename, timing (transition, async load), assertion text updated in the app, test data leaking between runs.

0 commit comments

Comments
 (0)