Skip to main content

APIResponseAssertions

APIResponseAssertions 类提供了可用于在测试中对 APIResponse 进行断言的方法。

🌐 The APIResponseAssertions class provides assertion methods that can be used to make assertions about the APIResponse in the tests.

from playwright.sync_api import Page, expect

def test_navigates_to_login_page(page: Page) -> None:
# ..
response = page.request.get('https://playwright.nodejs.cn')
expect(response).to_be_ok()

方法

🌐 Methods

not_to_be_ok

Added in: v1.19 apiResponseAssertions.not_to_be_ok

expect(response).to_be_ok() 的相反情况。

🌐 The opposite of expect(response).to_be_ok().

用法

expect(response).not_to_be_ok()

返回


to_be_ok

Added in: v1.18 apiResponseAssertions.to_be_ok

确保响应状态码在 200..299 范围内。

🌐 Ensures the response status code is within 200..299 range.

用法

import re
from playwright.sync_api import expect

# ...
expect(response).to_be_ok()

返回