File tree Expand file tree Collapse file tree 5 files changed +9
-10
lines changed
Expand file tree Collapse file tree 5 files changed +9
-10
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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 ----------
Original file line number Diff line number Diff 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 ----------
Original file line number Diff line number Diff line change 3030 InWheel = None
3131from 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
3636def extractall (zip : zipfile .ZipFile , path : str ) -> None :
Original file line number Diff line number Diff 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-
410405async 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" )
You can’t perform that action at this time.
0 commit comments