@@ -100,6 +100,7 @@ def create(
100100 extensions : Iterable [browser_create_params .Extension ] | Omit = omit ,
101101 headless : bool | Omit = omit ,
102102 invocation_id : str | Omit = omit ,
103+ kiosk_mode : bool | Omit = omit ,
103104 persistence : BrowserPersistenceParam | Omit = omit ,
104105 profile : browser_create_params .Profile | Omit = omit ,
105106 proxy_id : str | Omit = omit ,
@@ -124,6 +125,9 @@ def create(
124125
125126 invocation_id: action invocation ID
126127
128+ kiosk_mode: If true, launches the browser in kiosk mode to hide address bar and tabs in live
129+ view.
130+
127131 persistence: Optional persistence configuration for the browser session.
128132
129133 profile: Profile selection for the browser session. Provide either id or name. If
@@ -167,6 +171,7 @@ def create(
167171 "extensions" : extensions ,
168172 "headless" : headless ,
169173 "invocation_id" : invocation_id ,
174+ "kiosk_mode" : kiosk_mode ,
170175 "persistence" : persistence ,
171176 "profile" : profile ,
172177 "proxy_id" : proxy_id ,
@@ -395,6 +400,7 @@ async def create(
395400 extensions : Iterable [browser_create_params .Extension ] | Omit = omit ,
396401 headless : bool | Omit = omit ,
397402 invocation_id : str | Omit = omit ,
403+ kiosk_mode : bool | Omit = omit ,
398404 persistence : BrowserPersistenceParam | Omit = omit ,
399405 profile : browser_create_params .Profile | Omit = omit ,
400406 proxy_id : str | Omit = omit ,
@@ -419,6 +425,9 @@ async def create(
419425
420426 invocation_id: action invocation ID
421427
428+ kiosk_mode: If true, launches the browser in kiosk mode to hide address bar and tabs in live
429+ view.
430+
422431 persistence: Optional persistence configuration for the browser session.
423432
424433 profile: Profile selection for the browser session. Provide either id or name. If
@@ -462,6 +471,7 @@ async def create(
462471 "extensions" : extensions ,
463472 "headless" : headless ,
464473 "invocation_id" : invocation_id ,
474+ "kiosk_mode" : kiosk_mode ,
465475 "persistence" : persistence ,
466476 "profile" : profile ,
467477 "proxy_id" : proxy_id ,
0 commit comments