-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
25 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
import { test } from "@playwright/test"; | ||
|
||
test("Example test", async ({ page }) => { | ||
// baseUrl에 정의된 URL로 이동합니다. | ||
await page.goto("/"); | ||
|
||
// 예상 결과를 확인합니다. | ||
// await expect(page.title()).resolves.toMatch("Expected Title"); | ||
}); | ||
|
||
test("Another test", async ({ page }) => { | ||
// baseUrl에 정의된 URL로 이동합니다. | ||
await page.goto("/"); | ||
|
||
// 특정 요소를 찾고 상태를 확인합니다. | ||
// const text = await page.textContent(".selector"); | ||
// expect(text).toBe("Expected Text"); | ||
}); |