Skip to content

chore: roll Playwright to 1.25.0-alpha-1659629898000 #1481

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Aug 4, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ Playwright is a Python library to automate [Chromium](https://www.chromium.org/H

| | Linux | macOS | Windows |
| :--- | :---: | :---: | :---: |
| Chromium <!-- GEN:chromium-version -->104.0.5112.57<!-- GEN:stop --> | ✅ | ✅ | ✅ |
| Chromium <!-- GEN:chromium-version -->104.0.5112.81<!-- GEN:stop --> | ✅ | ✅ | ✅ |
| WebKit <!-- GEN:webkit-version -->16.0<!-- GEN:stop --> | ✅ | ✅ | ✅ |
| Firefox <!-- GEN:firefox-version -->102.0<!-- GEN:stop --> | ✅ | ✅ | ✅ |
| Firefox <!-- GEN:firefox-version -->103.0<!-- GEN:stop --> | ✅ | ✅ | ✅ |

## Documentation

Expand Down
4 changes: 3 additions & 1 deletion playwright/async_api/_generated.py
Original file line number Diff line number Diff line change
Expand Up @@ -11979,7 +11979,9 @@ async def connect(
) -> "Browser":
"""BrowserType.connect

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

Parameters
----------
Expand Down
4 changes: 3 additions & 1 deletion playwright/sync_api/_generated.py
Original file line number Diff line number Diff line change
Expand Up @@ -12025,7 +12025,9 @@ def connect(
) -> "Browser":
"""BrowserType.connect

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

Parameters
----------
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.25.0-alpha-jul-26-2022"
driver_version = "1.25.0-alpha-1659629898000"


def extractall(zip: zipfile.ZipFile, path: str) -> None:
Expand Down
5 changes: 0 additions & 5 deletions tests/async/test_element_handle.py
Original file line number Diff line number Diff line change
Expand Up @@ -402,11 +402,6 @@ async def test_should_wait_for_display_none_to_become_visible(page):
await waiting_helper(page, 'div => div.style.display = "block"')


async def test_should_wait_for_display_contents_to_become_visible(page):
await page.set_content('<div style="display:contents">Hello</div>')
await waiting_helper(page, 'div => div.style.display = "block"')


async def test_should_work_for_visibility_hidden_element(page):
await page.set_content('<div style="visibility:hidden">Hello</div>')
div = await page.query_selector("div")
Expand Down