fix(browser): extend hook arm timeouts

This commit is contained in:
Peter Steinberger
2025-12-20 09:43:58 +00:00
parent 429972b5c5
commit f54c801bd2
4 changed files with 126 additions and 9 deletions

View File

@@ -268,7 +268,7 @@ export function registerBrowserActionInputCommands(
.option("--target-id <id>", "CDP target id (or unique prefix)")
.option(
"--timeout-ms <ms>",
"How long to wait for the next file chooser (default: 10000)",
"How long to wait for the next file chooser (default: 30000)",
(v: string) => Number(v),
)
.action(async (paths: string[], opts, cmd) => {
@@ -332,7 +332,7 @@ export function registerBrowserActionInputCommands(
.option("--target-id <id>", "CDP target id (or unique prefix)")
.option(
"--timeout-ms <ms>",
"How long to wait for the next dialog (default: 10000)",
"How long to wait for the next dialog (default: 30000)",
(v: string) => Number(v),
)
.action(async (opts, cmd) => {