We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a8811fe commit 297d154Copy full SHA for 297d154
stagehand/handlers/act_handler.py
@@ -48,6 +48,8 @@ async def act(self, options: Union[ActOptions, ObserveResult]) -> ActResult:
48
)
49
50
# Extract timeout_ms from options (check both snake_case and camelCase)
51
+ ## TODO - this is a temporary fix to support the timeout_ms field in the options.
52
+ ## We should update the options to use the timeout_ms field instead of timeoutMs.
53
timeout_ms = options.get("timeout_ms") or options.get("timeoutMs")
54
55
# If timeout is specified, wrap the entire act operation with asyncio.wait_for
0 commit comments