APIResponseAssertions
APIResponseAssertions 类提供了可用于在测试中对 APIResponse 进行断言的方法。
🌐 The APIResponseAssertions class provides assertion methods that can be used to make assertions about the APIResponse in the tests.
- Sync
- Async
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()
from playwright.async_api import Page, expect
async def test_navigates_to_login_page(page: Page) -> None:
# ..
response = await page.request.get('https://playwright.nodejs.cn')
await expect(response).to_be_ok()
方法
🌐 Methods
not_to_be_ok
Added in: v1.19expect(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确保响应状态码在 200..299 范围内。
🌐 Ensures the response status code is within 200..299 range.
用法
- Sync
- Async
import re
from playwright.sync_api import expect
# ...
expect(response).to_be_ok()
from playwright.async_api import expect
# ...
await expect(response).to_be_ok()
返回