@testdriverai/runner 7.9.179-test → 7.10.1-canary

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@testdriverai/runner",
3
- "version": "7.9.179-test",
3
+ "version": "7.10.1-canary",
4
4
  "description": "TestDriver Runner - Ably-based remote automation agent with Node.js automation",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -168,9 +168,12 @@ else
168
168
  fi
169
169
 
170
170
  # ─── Force a screen redraw ────────────────────────────────────────────────────
171
- # Send a synthetic keypress so the display is definitely "active" and any
172
- # screen blanking timers are reset.
173
- xdotool key --clearmodifiers super 2>/dev/null || true
171
+ # Wake the display and reset any blanking timers WITHOUT synthetic input.
172
+ # Do NOT send the `super` key here — on Linux desktops it's bound to the
173
+ # Activities overview / app launcher, which steals focus from (and visually
174
+ # hides) the active window. Same reasoning as the black-screenshot recovery
175
+ # in lib/automation.js.
176
+ xset s reset 2>/dev/null || true
174
177
  sleep 1
175
178
 
176
179
  echo "[start-desktop] Desktop environment ready"