Skip to content

Commit e13e6b4

Browse files
committed
update driver
1 parent ad5db80 commit e13e6b4

File tree

3 files changed

+1
-32
lines changed

3 files changed

+1
-32
lines changed

playwright/src/main/java/com/microsoft/playwright/assertions/LocatorAssertions.java

Lines changed: 0 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -2329,31 +2329,5 @@ default void matchesAriaSnapshot(String expected) {
23292329
* @since v1.49
23302330
*/
23312331
void matchesAriaSnapshot(String expected, MatchesAriaSnapshotOptions options);
2332-
/**
2333-
* Asserts that the target element matches the given <a
2334-
* href="https://playwright.dev/java/docs/aria-snapshots">accessibility snapshot</a>.
2335-
*
2336-
* <p> <strong>Usage</strong>
2337-
* <pre>{@code
2338-
* assertThat(page.locator("body")).matchesAriaSnapshot(new LocatorAssertions.MatchesAriaSnapshotOptions().setPath("/path/to/snapshot.yml"));
2339-
* }</pre>
2340-
*
2341-
* @since v1.50
2342-
*/
2343-
default void matchesAriaSnapshot() {
2344-
matchesAriaSnapshot((MatchesAriaSnapshotOptions) null);
2345-
}
2346-
/**
2347-
* Asserts that the target element matches the given <a
2348-
* href="https://playwright.dev/java/docs/aria-snapshots">accessibility snapshot</a>.
2349-
*
2350-
* <p> <strong>Usage</strong>
2351-
* <pre>{@code
2352-
* assertThat(page.locator("body")).matchesAriaSnapshot(new LocatorAssertions.MatchesAriaSnapshotOptions().setPath("/path/to/snapshot.yml"));
2353-
* }</pre>
2354-
*
2355-
* @since v1.50
2356-
*/
2357-
void matchesAriaSnapshot(MatchesAriaSnapshotOptions options);
23582332
}
23592333

playwright/src/main/java/com/microsoft/playwright/impl/LocatorAssertionsImpl.java

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -359,11 +359,6 @@ public void matchesAriaSnapshot(String expected, MatchesAriaSnapshotOptions snap
359359
expectImpl("to.match.aria", options, expected,"Locator expected to match Aria snapshot");
360360
}
361361

362-
@Override
363-
public void matchesAriaSnapshot(MatchesAriaSnapshotOptions options) {
364-
365-
}
366-
367362
@Override
368363
public void isChecked(IsCheckedOptions options) {
369364
if (options == null) {

scripts/DRIVER_VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.50.0-alpha-1737068696000
1+
1.50.0-alpha-1737075373000

0 commit comments

Comments
 (0)