Các câu lệnh xác thực (assertion)
Generic Assertion
Locator Assertion
Ví dụ:
import { test, expect } from '@playwright/test';
test('status becomes submitted', async ({ page }) => {
// ...
await page.getByRole('button').click();
await expect(page.locator('.status')).toHaveText('Submitted');
});