const { test, expect } = require('@playwright/test'); test('sample test', async ({ page }) => { await page.setContent(`
hello
world`); expect(await page.textContent('span')).toBe('world'); });