1
0
mirror of synced 2026-08-05 23:16:54 +00:00

chore: revert some inadvertent changes (#894)

This commit is contained in:
Yury Semikhatsky
2022-04-12 08:55:05 -07:00
committed by GitHub
parent 1681c410dd
commit 483cf0d473
2 changed files with 3 additions and 3 deletions
@@ -33,8 +33,9 @@ public class TestClick extends TestBase {
@Test
void shouldClickTheButton() {
page.onLoad(e -> System.out.println("LOADED"));
System.out.println("DONE");
page.navigate(server.PREFIX + "/input/button.html");
page.click("button");
assertEquals("Clicked", page.evaluate("result"));
}
@Test
@@ -43,7 +43,6 @@ public class TestTracing extends TestBase {
@BeforeAll
void launchBrowser(@TempDir Path tempDir) {
System.out.println("new launchBrowser(");
BrowserType.LaunchOptions options = createLaunchOptions();
options.setTracesDir(tempDir.resolve("trace-dir"));
launchBrowser(options);