8 lines
219 B
JavaScript
8 lines
219 B
JavaScript
const { test, expect } = require("@playwright/test")
|
|
|
|
test("basic test", async ({ page }) => {
|
|
await page.goto("https://example.com")
|
|
const title = await page.title()
|
|
expect(title).toBe("Example Domain")
|
|
})
|