Skip to content

Commit

Permalink
fix other UC
Browse files Browse the repository at this point in the history
  • Loading branch information
mxschmitt committed Dec 21, 2023
1 parent c112bba commit 9ccefcd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion playwright/_impl/_browser_type.py
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ async def connect_over_cdp(
self,
endpointURL: str,
timeout: float = None,
slow_mo: float = None,
slowMo: float = None,
headers: Dict[str, str] = None,
) -> Browser:
params = locals_to_params(locals())
Expand Down
2 changes: 1 addition & 1 deletion playwright/async_api/_generated.py
Original file line number Diff line number Diff line change
Expand Up @@ -15100,7 +15100,7 @@ async def connect_over_cdp(
await self._impl_obj.connect_over_cdp(
endpointURL=endpoint_url,
timeout=timeout,
slow_mo=slow_mo,
slowMo=slow_mo,
headers=mapping.to_impl(headers),
)
)
Expand Down
2 changes: 1 addition & 1 deletion playwright/sync_api/_generated.py
Original file line number Diff line number Diff line change
Expand Up @@ -15171,7 +15171,7 @@ def connect_over_cdp(
self._impl_obj.connect_over_cdp(
endpointURL=endpoint_url,
timeout=timeout,
slow_mo=slow_mo,
slowMo=slow_mo,
headers=mapping.to_impl(headers),
)
)
Expand Down

0 comments on commit 9ccefcd

Please sign in to comment.