Skip to content

Commit eecef85

Browse files
authored
chore: roll Playwright to 1.25.0-alpha-1659629898000 (#1481)
1 parent 2fa0b93 commit eecef85

File tree

5 files changed

+9
-10
lines changed

5 files changed

+9
-10
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ Playwright is a Python library to automate [Chromium](https://www.chromium.org/H
44

55
| | Linux | macOS | Windows |
66
| :--- | :---: | :---: | :---: |
7-
| Chromium <!-- GEN:chromium-version -->104.0.5112.57<!-- GEN:stop --> ||||
7+
| Chromium <!-- GEN:chromium-version -->104.0.5112.81<!-- GEN:stop --> ||||
88
| WebKit <!-- GEN:webkit-version -->16.0<!-- GEN:stop --> ||||
9-
| Firefox <!-- GEN:firefox-version -->102.0<!-- GEN:stop --> ||||
9+
| Firefox <!-- GEN:firefox-version -->103.0<!-- GEN:stop --> ||||
1010

1111
## Documentation
1212

playwright/async_api/_generated.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11979,7 +11979,9 @@ async def connect(
1197911979
) -> "Browser":
1198011980
"""BrowserType.connect
1198111981

11982-
This method attaches Playwright to an existing browser instance.
11982+
This method attaches Playwright to an existing browser instance. When connecting to another browser launched via
11983+
`BrowserType.launchServer` in Node.js, the major and minor version needs to match the client version (1.2.3 → is
11984+
compatible with 1.2.x).
1198311985

1198411986
Parameters
1198511987
----------

playwright/sync_api/_generated.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12025,7 +12025,9 @@ def connect(
1202512025
) -> "Browser":
1202612026
"""BrowserType.connect
1202712027

12028-
This method attaches Playwright to an existing browser instance.
12028+
This method attaches Playwright to an existing browser instance. When connecting to another browser launched via
12029+
`BrowserType.launchServer` in Node.js, the major and minor version needs to match the client version (1.2.3 → is
12030+
compatible with 1.2.x).
1202912031

1203012032
Parameters
1203112033
----------

setup.py

Lines changed: 1 addition & 1 deletion
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.25.0-alpha-jul-26-2022"
33+
driver_version = "1.25.0-alpha-1659629898000"
3434

3535

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

tests/async/test_element_handle.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -402,11 +402,6 @@ async def test_should_wait_for_display_none_to_become_visible(page):
402402
await waiting_helper(page, 'div => div.style.display = "block"')
403403

404404

405-
async def test_should_wait_for_display_contents_to_become_visible(page):
406-
await page.set_content('<div style="display:contents">Hello</div>')
407-
await waiting_helper(page, 'div => div.style.display = "block"')
408-
409-
410405
async def test_should_work_for_visibility_hidden_element(page):
411406
await page.set_content('<div style="visibility:hidden">Hello</div>')
412407
div = await page.query_selector("div")

0 commit comments

Comments
 (0)