Skip to content

Commit 6dd140e

Browse files
committed
Fix formatting
1 parent 3afa851 commit 6dd140e

File tree

1 file changed

+2
-1
lines changed
  • playwright-examples/src/test/java/com/saucelabs/playwrightexamples

1 file changed

+2
-1
lines changed

playwright-examples/src/test/java/com/saucelabs/playwrightexamples/TestExample.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,8 @@ void closeContextAndWindow() throws IOException {
132132
@Test
133133
void shouldClickButton() {
134134
page.navigate(
135-
"data:text/html,<script>var result;</script><button onclick='result=\"Clicked\"'>Go</button>");
135+
"data:text/html,<script>var result;</script><button "
136+
+ "onclick='result=\"Clicked\"'>Go</button>");
136137
page.locator("button").click();
137138
assertEquals("Clicked", page.evaluate("result"));
138139
}

0 commit comments

Comments
 (0)