File tree Expand file tree Collapse file tree 2 files changed +0
-4
lines changed Expand file tree Collapse file tree 2 files changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -198,7 +198,6 @@ async def stop_tracing(self) -> bytes:
198
198
199
199
200
200
async def normalize_context_params (is_sync : bool , params : Dict ) -> None :
201
- params ["sdkLanguage" ] = "python" if is_sync else "python-async"
202
201
if params .get ("noViewport" ):
203
202
del params ["noViewport" ]
204
203
params ["noDefaultViewport" ] = True
Original file line number Diff line number Diff line change @@ -152,9 +152,6 @@ async def connect_over_cdp(
152
152
headers : Dict [str , str ] = None ,
153
153
) -> Browser :
154
154
params = locals_to_params (locals ())
155
- params ["sdkLanguage" ] = (
156
- "python" if self ._connection ._is_sync else "python-async"
157
- )
158
155
response = await self ._channel .send_return_as_dict ("connectOverCDP" , params )
159
156
browser = cast (Browser , from_channel (response ["browser" ]))
160
157
You can’t perform that action at this time.
0 commit comments