@@ -85,6 +85,7 @@ def create(
8585 debug_config : session_create_params .DebugConfig | Omit = omit ,
8686 device_config : session_create_params .DeviceConfig | Omit = omit ,
8787 dimensions : session_create_params .Dimensions | Omit = omit ,
88+ experimental_features : SequenceNotStr [str ] | Omit = omit ,
8889 extension_ids : SequenceNotStr [str ] | Omit = omit ,
8990 headless : bool | Omit = omit ,
9091 is_selenium : bool | Omit = omit ,
@@ -126,6 +127,8 @@ def create(
126127
127128 dimensions: Viewport and browser window dimensions for the session
128129
130+ experimental_features: Enable experimental features for the session.
131+
129132 extension_ids: Array of extension IDs to install in the session. Use ['all_ext'] to install all
130133 uploaded extensions.
131134
@@ -183,6 +186,7 @@ def create(
183186 "debug_config" : debug_config ,
184187 "device_config" : device_config ,
185188 "dimensions" : dimensions ,
189+ "experimental_features" : experimental_features ,
186190 "extension_ids" : extension_ids ,
187191 "headless" : headless ,
188192 "is_selenium" : is_selenium ,
@@ -888,6 +892,7 @@ async def create(
888892 debug_config : session_create_params .DebugConfig | Omit = omit ,
889893 device_config : session_create_params .DeviceConfig | Omit = omit ,
890894 dimensions : session_create_params .Dimensions | Omit = omit ,
895+ experimental_features : SequenceNotStr [str ] | Omit = omit ,
891896 extension_ids : SequenceNotStr [str ] | Omit = omit ,
892897 headless : bool | Omit = omit ,
893898 is_selenium : bool | Omit = omit ,
@@ -929,6 +934,8 @@ async def create(
929934
930935 dimensions: Viewport and browser window dimensions for the session
931936
937+ experimental_features: Enable experimental features for the session.
938+
932939 extension_ids: Array of extension IDs to install in the session. Use ['all_ext'] to install all
933940 uploaded extensions.
934941
@@ -986,6 +993,7 @@ async def create(
986993 "debug_config" : debug_config ,
987994 "device_config" : device_config ,
988995 "dimensions" : dimensions ,
996+ "experimental_features" : experimental_features ,
989997 "extension_ids" : extension_ids ,
990998 "headless" : headless ,
991999 "is_selenium" : is_selenium ,
0 commit comments