1
import { test, expect } from
'@playwright/test'
3
test('homepage has target text', async ({ page }) => {
5
await page.goto('https://qaxperience.com')
6
await
expect(page).toHaveTitle(/QA/)
8
const element = page.locator('css=h2')
9
await
expect(element).toHaveText('QA')