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
4
4
5
5
| | Linux | macOS | Windows |
6
6
| :--- | :---: | :---: | :---: |
7
- | Chromium <!-- GEN:chromium-version --> 104.0.5112.57 <!-- GEN:stop --> | ✅ | ✅ | ✅ |
7
+ | Chromium <!-- GEN:chromium-version --> 104.0.5112.81 <!-- GEN:stop --> | ✅ | ✅ | ✅ |
8
8
| 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 --> | ✅ | ✅ | ✅ |
10
10
11
11
## Documentation
12
12
Original file line number Diff line number Diff line change @@ -11979,7 +11979,9 @@ async def connect(
11979
11979
) -> "Browser":
11980
11980
"""BrowserType.connect
11981
11981
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).
11983
11985
11984
11986
Parameters
11985
11987
----------
Original file line number Diff line number Diff line change @@ -12025,7 +12025,9 @@ def connect(
12025
12025
) -> "Browser":
12026
12026
"""BrowserType.connect
12027
12027
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).
12029
12031
12030
12032
Parameters
12031
12033
----------
Original file line number Diff line number Diff line change 30
30
InWheel = None
31
31
from wheel .bdist_wheel import bdist_wheel as BDistWheelCommand
32
32
33
- driver_version = "1.25.0-alpha-jul-26-2022 "
33
+ driver_version = "1.25.0-alpha-1659629898000 "
34
34
35
35
36
36
def 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):
402
402
await waiting_helper (page , 'div => div.style.display = "block"' )
403
403
404
404
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
-
410
405
async def test_should_work_for_visibility_hidden_element (page ):
411
406
await page .set_content ('<div style="visibility:hidden">Hello</div>' )
412
407
div = await page .query_selector ("div" )
You can’t perform that action at this time.
0 commit comments