Skip to content

Commit

Permalink
chore: roll Playwright to 1.24.0 (microsoft#1447)
Browse files Browse the repository at this point in the history
  • Loading branch information
rwoll committed Jul 21, 2022
1 parent c123ce0 commit 67ea47b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion playwright/async_api/_generated.py
Original file line number Diff line number Diff line change
Expand Up @@ -12617,7 +12617,7 @@ def filter(
multiple times.

```py
row_locator = page.lsocator(\"tr\")
row_locator = page.locator(\"tr\")
# ...
await row_locator
.filter(has_text=\"text in column 1\")
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 @@ -12674,7 +12674,7 @@ def filter(
multiple times.

```py
row_locator = page.lsocator(\"tr\")
row_locator = page.locator(\"tr\")
# ...
row_locator
.filter(has_text=\"text in column 1\")
Expand Down
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.24.0-beta-1657919681000"
driver_version = "1.24.0"


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

0 comments on commit 67ea47b

Please sign in to comment.