發行說明
版本 1.47
Network 頁籤改進
追蹤檢視器中的 Network 分頁有幾個不錯的改進:
- 按資產類型和 URL 過濾
- 更好地顯示查詢字串參數
- 字體資產預覽
雜項
mcr.microsoft.com/playwright-python:v1.47.0
現在提供基於 Ubuntu 24.04 Noble 的 Playwright 映像。要使用基於 22.04 jammy 的映像,請使用mcr.microsoft.com/playwright-python:v1.47.0-jammy
。- 現在可以通過將
cert
和key
以位元組形式傳遞來從記憶體中傳遞 TLS 用戶端證書,而不是文件路徑。 - locator.select_option() 中的
no_wait_after
已被棄用。 - 我們收到報告稱 WebGL 在 GitHub Actions 的
macos-13
上的 Webkit 表現異常。我們建議將 GitHub Actions 升級到macos-14
。
瀏覽器版本
- Chromium 129.0.6668.29
- Mozilla Firefox 130.0
- WebKit 18.0
此版本也針對以下穩定頻道進行了測試:
- Google Chrome 128
- Microsoft Edge 128
版本 1.46
TLS Client Certificates
Playwright 現在允許提供客戶端憑證,以便伺服器可以驗證它們,如 TLS 客戶端驗證所指定的。
您可以將用戶端憑證作為 browser.new_context() 和 api_request.new_context() 的參數。以下程式碼片 段設定 https://example.com
的用戶端憑證:
context = browser.new_context(
client_certificates=[
{
"origin": "https://example.com",
"certPath": "client-certificates/cert.pem",
"keyPath": "client-certificates/key.pem",
}
],
)
追蹤檢視器更新
- 現在在附件窗格中內嵌顯示文字附件的內容。
- 新增設定以顯示/隱藏路由動作,例如 route.continue_()。
- 在網路詳細資訊標籤中顯示請求方法和狀態。
- 新增按鈕以將來源檔案位置複製到剪貼簿。
- Metadata 窗格現在顯示
base_url
。
雜項
- 新的
maxRetries
選項在 api_request_context.fetch() 中,當ECONNRESET
網路錯誤時重試。
瀏覽器版本
- Chromium 128.0.6613.18
- Mozilla Firefox 128.0
- WebKit 18.0
此版本也針對以下穩定頻道進行了測試:
- Google Chrome 127
- Microsoft Edge 127
版本 1.45
時鐘
利用新的 Clock API 允許在測試中操作和控制時間,以驗 證與時間相關的行為。此 API 涵蓋許多常見情境,包括:
- 使用預定義時間進行測試;
- 保持一致的時間和計時器;
- 監控不活動狀態;
- 手動計時。
# Initialize clock with some time before the test time and let the page load
# naturally. `Date.now` will progress as the timers fire.
page.clock.install(time=datetime.datetime(2024, 2, 2, 8, 0, 0))
page.goto("http://localhost:3333")
# Pretend that the user closed the laptop lid and opened it again at 10am.
# Pause the time once reached that point.
page.clock.pause_at(datetime.datetime(2024, 2, 2, 10, 0, 0))
# Assert the page state.
expect(page.get_by_test_id("current-time")).to_have_text("2/2/2024, 10:00:00 AM")
# Close the laptop lid again and open it at 10:30am.
page.clock.fast_forward("30:00")
expect(page.get_by_test_id("current-time")).to_have_text("2/2/2024, 10:30:00 AM")
請參閱時鐘指南以獲取更多資訊。
雜項
-
方法 locator.set_input_files() 現在支援為
<input type=file webkitdirectory>
元素上傳目錄。page.get_by_label("Upload directory").set_input_files('mydir')
-
多個方法如 locator.click() 或 locator.press() 現在支援
ControlOrMeta
修飾鍵。此鍵在 macOS 上對應Meta
,在 Windows 和 Linux 上對應Control
。# 按下常見的鍵盤快捷鍵 Control+S 或 Meta+S 來觸發 "Save" 操作。
page.keyboard.press("ControlOrMeta+S") -
在 api_request.new_context() 中新增屬性
httpCredentials.send
,允許總是發送Authorization
標頭或僅在回應401 Unauthorized
時發送。 -
Playwright 現在支援在 Ubuntu 24.04 上的 Chromium、Firefox 和 WebKit。
-
v1.45 是最後一個為 macOS 12 Monterey 接收 WebKit 更新的版本。請更新 macOS 以繼續使用最新的 WebKit。
瀏覽器版本
- Chromium 127.0.6533.5
- Mozilla Firefox 127.0
- WebKit 17.4
此版本也針對以下穩定頻道進行了測試:
- Google Chrome 126
- Microsoft Edge 126
版本 1.44
新的 API
無障礙聲明
-
expect(locator).to_have_accessible_name() 檢查元素是否具有指定的可訪問名稱:
locator = page.get_by_role("button")
expect(locator).to_have_accessible_name("Submit") -
expect(locator).to_have_accessible_description() 檢查元素是否具有指定的可訪問描述:
locator = page.get_by_role("button")
expect(locator).to_have_accessible_description("Upload a photo") -
expect(locator).to_have_role() 檢查元素是否具有指定的 ARIA 角色:
locator = page.get_by_test_id("save-button")
expect(locator).to_have_role("button")
定位器處理程式
- 在執行使用 page.add_locator_handler() 添加的處理器後,Playwright 現在會等待觸發處理器的覆蓋層不再可見。你可以使用新的
no_wait_after
選項來選擇不使用此行為。 - 你可以在 page.add_locator_handler() 中使用新的
times
選項來指定處理器應該執行的最大次數。 - page.add_locator_handler() 中的處理器現在接受定位器作為參數。
- 新的 page.remove_locator_handler() 方法用於移除先前添加的定位器處理器。
locator = page.get_by_text("This interstitial covers the button")
page.add_locator_handler(locator, lambda overlay: overlay.locator("#close").click(), times=3, no_wait_after=True)
# Run your tests that can be interrupted by the overlay.
# ...
page.remove_locator_handler(locator)
其他選項
- expect(page).to_have_url() 現在支援
ignore_case
option。
瀏覽器版本
- Chromium 125.0.6422.14
- Mozilla Firefox 125.0.1
- WebKit 17.4
此版本也針對以下穩定頻道進行了測試:
- Google Chrome 124
- Microsoft Edge 124
版本 1.43
新的 API
-
方法 browser_context.clear_cookies 現在支援過濾器來僅移除某些 cookies。
# 清除所有 cookies。
context.clear_cookies()
# 新增: 清除具有特定名稱的 cookies。
context.clear_cookies(name="session-id")
# 新增: 清除特定域名的 cookies。
context.clear_cookies(domain="my-origin.com") -
新方法 locator.content_frame 將 Locator 物件轉換為 FrameLocator。這在您已獲得 Locator 物件,並且稍後想與框架內的內容互動時非常有用。
locator = page.locator("iframe[name='embedded']")
# ...
frame_locator = locator.content_frame
frame_locator.getByRole("button").click() -
新方法 frame_locator.owner 將 FrameLocator 物件轉換為 Locator。這在您已獲得 FrameLocator 物件,並且稍後想與
iframe
元素互動時非常有用。frame_locator = page.frame_locator("iframe[name='embedded']")
# ...
locator = frame_locator.owner
expect(locator).to_be_visible() -
Conda 構建現在發佈適用於 macOS-arm64 和 Linux-arm64。
瀏覽器版本
- Chromium 124.0.6367.8
- Mozilla Firefox 124.0
- WebKit 17.4
此版本也針對以下穩定頻道進行了測試:
- Google Chrome 123
- Microsoft Edge 123
版本 1.42
新定位器處理程式
新的方法 page.add_locator_handler() 註冊了一個回調函式,當指定的元素變得可見時將被呼叫,並且可能會阻止 Playwright 動作。回調函式可以去除覆蓋層。這裡有一個範例,當 cookie 對話框出現時將其關閉。
# Setup the handler.
page.add_locator_handler(
page.get_by_role("heading", name="Hej! You are in control of your cookies."),
lambda: page.get_by_role("button", name="Accept all").click(),
)
# Write the test as usual.
page.goto("https://www.ikea.com/")
page.get_by_role("link", name="Collection of blue and white").click()
expect(page.get_by_role("heading", name="Light and easy")).to_be_visible()
新的 API
- page.pdf 接受兩個新選項
tagged
和outline
。
公告
- ⚠️ Ubuntu 18 已不再支援。
瀏覽器版本
- Chromium 123.0.6312.4
- Mozilla Firefox 123.0
- WebKit 17.4
此版本也針對以下穩定頻道進行了測試:
- Google Chrome 122
- Microsoft Edge 123
版本 1.41
新的 API
- 新方法 page.unroute_all() 移除所有由 page.route() 和 page.route_from_har() 註冊的路由。可選擇等待正在進行的路由完成,或忽略它們的任何錯誤。
- 新方法 browser_context.unroute_all() 移除所有由 browser_context.route() 和 browser_context.route_from_har() 註冊的路由。可選擇等待正在進行的路由完成,或忽略它們的任何錯誤。
- 新選項
style
在 page.screenshot() 和 locator.screenshot() 中,在截圖前添加自訂 CSS 到頁面。
瀏覽器版本
- Chromium 121.0.6167.57
- Mozilla Firefox 121.0
- WebKit 17.4
此版本也針對以下穩定頻道進行了測試:
- Google Chrome 120
- Microsoft Edge 120
版本 1.40
測試程式碼產生器更新
產生斷言的新工具:
- "Assert visibility" 工具生成 expect(locator).to_be_visible()。
- "Assert value" 工具生成 expect(locator).to_have_value()。
- "Assert text" 工具生成 expect(locator).to_contain_text()。
這裡是一個帶有斷言的生成測試範例:
from playwright.sync_api import Page, expect
def test_example(page: Page) -> None:
page.goto("https://playwright.dev/")
page.get_by_role("link", name="Get started").click()
expect(page.get_by_label("Breadcrumbs").get_by_role("list")).to_contain_text("Installation")
expect(page.get_by_label("Search")).to_be_visible()
page.get_by_label("Search").click()
page.get_by_placeholder("Search docs").fill("locator")
expect(page.get_by_placeholder("Search docs")).to_have_value("locator");
新的 API
- 選項
reason
在 page.close(), browser_context.close() 和 browser.close()。關閉原因會報告所有因關閉而中斷的操作。 - 選項
firefox_user_prefs
在 browser_type.launch_persistent_context()。
其他變更
- 函式 download.path() 會在下載失敗和取消時拋出錯誤。
瀏覽器版本
- Chromium 120.0.6099.28
- Mozilla Firefox 119.0
- WebKit 17.4
此版本也針對以下穩定頻道進行了測試:
- Google Chrome 119
- Microsoft Edge 119
版本 1.39
Evergreen 瀏覽器更新。
瀏覽器版本
- Chromium 119.0.6045.9
- Mozilla Firefox 118.0.1
- WebKit 17.4
此版本也針對以下穩定頻道進行了測試:
- Google Chrome 118
- Microsoft Edge 118
版本 1.38
追蹤檢視器更新
- 放大時間範圍。
- 網路面板重新設計。
新的 API
棄用
- 以下方法已被棄用: page.type(), frame.type(), locator.type() 和 element_handle.type()。請改用 locator.fill(),速度更快。只有在頁面上有特殊鍵盤處理並且需要逐個按鍵時,才使用 locator.press_sequentially()。
瀏覽器版本
- Chromium 117.0.5938.62
- Mozilla Firefox 117.0
- WebKit 17.0
此版本也針對以下穩定頻道進行了測試:
- Google Chrome 116
- Microsoft Edge 116
版本 1.37
重點
- 新的 --full-page-screenshot 命令列標誌允許在失敗時截取整頁截圖。
- 現在可以使用 browser_context_args 標記覆蓋單個測試的上下文選項。
pytest-playwright
現在也發佈在 Anaconda。
📚 Debian 12 Bookworm 支援
Playwright 現在支援 Debian 12 Bookworm(x86_64 和 arm64)上的 Chromium、Firefox 和 WebKit。如遇到任何問題,請告訴我們!
Linux 支援看起來像這樣:
Ubuntu 20.04 | Ubuntu 22.04 | Debian 11 | Debian 12 | |
---|---|---|---|---|
Chromium | ✅ | ✅ | ✅ | ✅ |
WebKit | ✅ | ✅ | ✅ | ✅ |
Firefox | ✅ | ✅ | ✅ | ✅ |
瀏覽器版本
- Chromium 116.0.5845.82
- Mozilla Firefox 115.0
- WebKit 17.0
此版本也針對以下穩定頻道進行了測試:
- Google Chrome 115
- Microsoft Edge 115
版本 1.36
🏝️ 夏季維護版本發佈。
瀏覽器版本
- Chromium 115.0.5790.75
- Mozilla Firefox 115.0
- WebKit 17.0
此版本也針對以下穩定頻道進 行了測試:
- Google Chrome 114
- Microsoft Edge 114
版本 1.35
重點
-
新選項
mask_color
用於方法 page.screenshot() 和 locator.screenshot() 來改變預設的遮罩顏色。 -
新的
uninstall
CLI 指令來卸載瀏覽器二進位檔:$ playwright uninstall # 移除此安裝所安裝的瀏覽器
$ playwright uninstall --all # 移除所有曾經安裝的 Playwright 瀏覽器
瀏覽器版本
- Chromium 115.0.5790.13
- Mozilla Firefox 113.0
- WebKit 16.4
此版本也針對以下穩定頻道進行了測試:
- Google Chrome 114
- Microsoft Edge 114
版本 1.34
重點
-
新的 locator.and_() 建立一個同時匹配兩個定位器的定位器。
button = page.get_by_role("button").and_(page.get_by_title("Subscribe"))
-
新的事件 browser_context.on("console") 和 browser_context.on("dialog") 訂閱來自給定瀏覽器上下文中的任何頁面的任何對話框和控制台訊息。使用新方法 console_message.page 和 dialog.page 精確定位事件來源。
瀏覽器版本
- Chromium 114.0.5735.26
- Mozilla Firefox 113.0
- WebKit 16.4
此版本也針對以下穩定頻道進行了測試:
- Google Chrome 113
- Microsoft Edge 113
版本 1.33
定位器更新
-
使用 locator.or_() 建立一個匹配任意兩個定位器的定位器。考慮一個情景,你想點擊 "New email" 按鈕,但有時會彈出一個安全設定對話框。在這種情況下,你可以等待 "New email" 按鈕或對話框,並相應地操作:
new_email = page.get_by_role("button", name="New email")
dialog = page.get_by_text("Confirm security settings")
expect(new_email.or_(dialog)).is_visible()
if (dialog.is_visible()):
page.get_by_role("button", name="Dismiss").click()
new_email.click() -
在 locator.filter() 中使用新的選項
has_not
和has_not_text
來查找不匹配某些條件的元素。row_locator = page.locator("tr")
row_locator.filter(has_not_text="text in column 1").filter(
has_not=page.get_by_role("button", name="column 2 button")
).screenshot() -
使用新的 web-first 斷言 expect(locator).to_be_attached() 確保元素存在於頁面的 DOM 中。不要與 expect(locator).to_be_visible() 混淆,後者確保元素既附加又可見。
新的 API
- locator.or_()
- 新選項
has_not
在 locator.filter() - 新選項
has_not_text
在 locator.filter() - expect(locator).to_be_attached()
- 新選項
timeout
在 route.fetch()
⚠️ 重大變更
mcr.microsoft.com/playwright/python:v1.33.0
現在提供基於 Ubuntu Jammy 的 Playwright 映像。要使用基於 focal 的映像,請改用mcr.microsoft.com/playwright/python:v1.33.0-focal
。
瀏覽器版本
- Chromium 113.0.5672.53
- Mozilla Firefox 112.0
- WebKit 16.4
此版本也針對以下穩定頻道進行了測試:
- Google Chrome 112
- Microsoft Edge 112
版本 1.32
新的 API
- 自訂 expect 訊息,請參閱 測試斷言文件。
- 新選項
update_mode
和update_content
在 page.route_from_har() 和 browser_context.route_from_har()。 - 鏈接現有的定位器物件,詳情請參閱 定位器文件。
- 方法中的新選項
name
在 tracing.start_chunk()。
瀏覽器版本
- Chromium 112.0.5615.29
- Mozilla Firefox 111.0
- WebKit 16.4
此版本也針對以下穩定頻道進行了測試:
- Google Chrome 111
- Microsoft Edge 111
版本 1.31
新的 API
-
新的斷言 expect(locator).to_be_in_viewport() 確保定位器指向與視窗相交的元素,根據 intersection observer API。
from playwright.sync_api import expect
locator = page.get_by_role("button")
# 確保元素的至少一部分與視窗相交。
expect(locator).to_be_in_viewport()
# 確保元素完全在視窗之外。
expect(locator).not_to_be_in_viewport()
# 確保元素的至少一半與視窗相交。
expect(locator).to_be_in_viewport(ratio=0.5)
雜項
- 現在可以在單獨的視窗中開啟追蹤檢視器中的 DOM 快照。
- 新選項
route.fetch.max_redirects
用於方法 route.fetch()。 - Playwright 現在支援 Debian 11 arm64。
- 官方 docker images 現在包含 Node 18 而不是 Node 16。
瀏覽器版本
- Chromium 111.0.5563.19
- Mozilla Firefox 109.0
- WebKit 16.4
此版本也針對以下穩定頻道進行了測試:
- Google Chrome 110
- Microsoft Edge 110
版本 1.30
瀏覽器版本
- Chromium 110.0.5481.38
- Mozilla Firefox 108.0.2
- WebKit 16.4
此版本也針對以下穩定頻道進行了測試:
- Google Chrome 109
- Microsoft Edge 109
版本 1.29
新的 API
-
新方法 route.fetch() 和 route.fulfill() 的新選項
json
:def handle_route(route: Route):
# Fetch original settings.
response = route.fetch()
# Force settings theme to a predefined value.
json = response.json()
json["theme"] = "Solorized"
# Fulfill with modified data.
route.fulfill(json=json)
page.route("**/api/settings", handle_route) -
新方法 locator.all() 來遍歷所有匹配的元素:
# Check all checkboxes!
checkboxes = page.get_by_role("checkbox")
for checkbox in checkboxes.all():
checkbox.check() -
locator.select_option() 現在可以通過值或標籤匹配:
<select multiple>
<option value="red">Red</div>
<option value="green">Green</div>
<option value="blue">Blue</div>
</select>element.select_option("Red")
雜項
- 選項
postData
在方法 route.continue_ 現在支援 Serializable 值。
瀏覽器版本
- Chromium 109.0.5414.46
- Mozilla Firefox 107.0
- WebKit 16.4
此版本也針對以下穩定頻道進行了測試:
- Google Chrome 108
- Microsoft Edge 108
版本 1.28
Playwright 工具
- 程式碼產生器中的即時定位器。 使用 "Explore" 工具為頁面上的任意元素生成定位器。
新的 API
瀏覽器版本
- Chromium 108.0.5359.29
- Mozilla Firefox 106.0
- WebKit 16.4
此版本也針對以下穩定頻道進行了測試:
- Google Chrome 107
- Microsoft Edge 107
版本 1.27
定位器
使用這些新的 API,寫定位器是一種樂趣:
- page.get_by_text() 來根據文本內容定位。
- page.get_by_role() 來根據 ARIA role、ARIA attributes 和 accessible name 定位。
- page.get_by_label() 來根據關聯標籤的文本定位表單控件。
- page.get_by_test_id() 來根據其
data-testid
屬 性定位元素(其他屬性可配置)。 - page.get_by_placeholder() 來根據佔位符定位輸入框。
- page.get_by_alt_text() 來根據文本替代項定位元素,通常是圖像。
- page.get_by_title() 來根據標題定位元素。
page.get_by_label("User Name").fill("John")
page.get_by_label("Password").fill("secret-password")
page.get_by_role("button", name="Sign in").click()
expect(page.get_by_text("Welcome, John!")).to_be_visible()
所有相同的方法也可在 Locator、FrameLocator 和 Frame 類別上使用。
其他亮點
- 如 v1.25 中所宣布,Ubuntu 18 將於 2022 年 12 月起不再支援。此外,從下一個 Playwright 版本開始,Ubuntu 18 將不再有 WebKit 更新。
行為變更
-
expect(locator).to_have_attribute() with an empty value does not match missing attribute anymore。For example, the following snippet will succeed when
button
does not have adisabled
attribute.expect(page.get_by_role("button")).to_have_attribute("disabled", "")
瀏覽器版本
- Chromium 107.0.5304.18
- Mozilla Firefox 105.0.1
- WebKit 16.0
此版本也針對以下穩定頻道進行了測試:
- Google Chrome 106
- Microsoft Edge 106
版本 1.26
斷言
- 新選項
enabled
用於 expect(locator).to_be_enabled()。 - expect(locator).to_have_text() 現在可以穿透開放的 shadow roots。
- 新選項
editable
用於 expect(locator).to_be_editable()。 - 新選項
visible
用於 expect(locator).to_be_visible()。