Skip to content

Commit

Permalink
roll v1.48.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mxschmitt committed Oct 21, 2024
1 parent 59ab45f commit 9bf4d41
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions playwright/async_api/_generated.py
Original file line number Diff line number Diff line change
Expand Up @@ -1148,6 +1148,7 @@ def is_closed(self) -> bool:


class WebSocketRoute(AsyncBase):

@property
def url(self) -> str:
"""WebSocketRoute.url
Expand Down
1 change: 1 addition & 0 deletions playwright/sync_api/_generated.py
Original file line number Diff line number Diff line change
Expand Up @@ -1144,6 +1144,7 @@ def is_closed(self) -> bool:


class WebSocketRoute(SyncBase):

@property
def url(self) -> str:
"""WebSocketRoute.url
Expand Down
2 changes: 1 addition & 1 deletion scripts/expected_api_mismatch.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@ Parameter type mismatch in Page.add_locator_handler(handler=): documented as Cal

Parameter type mismatch in BrowserContext.route_web_socket(handler=): documented as Callable[[WebSocketRoute], Union[Any, Any]], code has Callable[[WebSocketRoute], Any]
Parameter type mismatch in Page.route_web_socket(handler=): documented as Callable[[WebSocketRoute], Union[Any, Any]], code has Callable[[WebSocketRoute], Any]
Parameter type mismatch in WebSocketRoute.on_close(handler=): documented as Callable[[Union[number, undefined]], Union[Any, Any]], code has Callable[[Union[int, None], Union[str, None]], Any]
Parameter type mismatch in WebSocketRoute.on_close(handler=): documented as Callable[[Union[int, undefined]], Union[Any, Any]], code has Callable[[Union[int, None], Union[str, None]], Any]
Parameter type mismatch in WebSocketRoute.on_message(handler=): documented as Callable[[str], Union[Any, Any]], code has Callable[[Union[bytes, str]], Any]
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
InWheel = None
from wheel.bdist_wheel import bdist_wheel as BDistWheelCommand

driver_version = "1.48.0-beta-1728034490000"
driver_version = "1.48.1"


def extractall(zip: zipfile.ZipFile, path: str) -> None:
Expand Down

0 comments on commit 9bf4d41

Please sign in to comment.