Skip to content

Commit 74e3c12

Browse files
committed
Update Java Playwright repo
1 parent 3e98b7b commit 74e3c12

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
<dependency>
2828
<groupId>com.applitools</groupId>
2929
<artifactId>eyes-playwright-java5</artifactId>
30-
<version>5.50.0</version>
30+
<version>5.67.2</version>
3131
<scope>test</scope>
3232
</dependency>
3333
<dependency>

src/test/java/com/applitools/example/AcmeBankTests.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -157,14 +157,14 @@ public void logIntoBankAccount() {
157157
// Traditional assertions that scrape the page for text values are not needed here.
158158

159159
// Load the login page.
160-
page.navigate("https://demo.applitools.com");
160+
page.navigate("https://sandbox.applitools.com/bank");
161161

162162
// Verify the full login page loaded correctly.
163163
eyes.check(Target.window().fully().withName("Login page"));
164164

165165
// Perform login.
166-
page.locator("#username").fill("andy");
167-
page.locator("#password").fill("i<3pandas");
166+
page.locator("#username").fill("Chris");
167+
page.locator("#password").fill("CorrectHorseBatteryStaple");
168168
page.locator("#log-in").click();
169169

170170
// Verify the full main page loaded correctly.

0 commit comments

Comments
 (0)