From 243c583669964a9fe28f932e2239ec184a74f93e Mon Sep 17 00:00:00 2001 From: Akhil Mehta Date: Fri, 27 Jun 2025 04:11:02 +0530 Subject: [PATCH] fix: set injected Stagehand cursor position to fixed for correct viewport tracking --- stagehand/domScripts.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stagehand/domScripts.js b/stagehand/domScripts.js index bb8a7868..85475ff0 100644 --- a/stagehand/domScripts.js +++ b/stagehand/domScripts.js @@ -1101,7 +1101,7 @@ `; - cursor.style.position = 'absolute'; + cursor.style.position = 'fixed'; cursor.style.top = '0'; cursor.style.left = '0'; cursor.style.width = '28px';