Skip to content

Commit 90753b5

Browse files
committed
fix: quote multi-word role value in Linux smoke test selector
The selector parser tokenizes on whitespace, so `role=push button` was split into two tokens causing a parse failure. Use single quotes inside the selector: `role='push button'`. https://claude.ai/code/session_01H9hrmueNF5pcBM8JeX81mT
1 parent e993073 commit 90753b5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/integration/replays/linux/01-desktop-smoke.ad

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ open gnome-calculator
66
wait 3000
77
screenshot "./test/screenshots/replays/linux-calculator.png"
88
snapshot
9-
is exists "label=Calculator || label=calculator || appName=gnome-calculator || appName=Calculator || role=push button"
9+
is exists "label=Calculator || label=calculator || appName=gnome-calculator || appName=Calculator || role='push button'"
1010
snapshot -i

0 commit comments

Comments
 (0)