We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a52116 commit 08b7d17Copy full SHA for 08b7d17
src/test/java/com/serenitydojo/playwright/ASimplePlaywrightTest.java
@@ -10,16 +10,6 @@ public class ASimplePlaywrightTest {
10
11
@Test
12
void shouldShowThePageTitle() {
13
- Playwright playwright = Playwright.create();
14
- Browser browser = playwright.chromium().launch();
15
- Page page = browser.newPage();
16
-
17
- page.navigate("https://practicesoftwaretesting.com");
18
- String title = page.title();
19
20
- Assertions.assertTrue(title.contains("Practice Software Testing"));
21
22
- browser.close();
23
- playwright.close();
+ // TODO: Write your first playwright test here
24
}
25
0 commit comments