Skip to content

Commit 67ea47b

Browse files
authored
chore: roll Playwright to 1.24.0 (#1447)
1 parent c123ce0 commit 67ea47b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Diff for: playwright/async_api/_generated.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -12617,7 +12617,7 @@ def filter(
1261712617
multiple times.
1261812618

1261912619
```py
12620-
row_locator = page.lsocator(\"tr\")
12620+
row_locator = page.locator(\"tr\")
1262112621
# ...
1262212622
await row_locator
1262312623
.filter(has_text=\"text in column 1\")

Diff for: playwright/sync_api/_generated.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -12674,7 +12674,7 @@ def filter(
1267412674
multiple times.
1267512675

1267612676
```py
12677-
row_locator = page.lsocator(\"tr\")
12677+
row_locator = page.locator(\"tr\")
1267812678
# ...
1267912679
row_locator
1268012680
.filter(has_text=\"text in column 1\")

Diff for: setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
InWheel = None
3131
from wheel.bdist_wheel import bdist_wheel as BDistWheelCommand
3232

33-
driver_version = "1.24.0-beta-1657919681000"
33+
driver_version = "1.24.0"
3434

3535

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

0 commit comments

Comments
 (0)