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 e81b874 commit 8dfb745Copy full SHA for 8dfb745
playwright/src/main/java/com/microsoft/playwright/impl/PageImpl.java
@@ -949,8 +949,8 @@ public PageImpl opener() {
949
950
@Override
951
public void pause() {
952
- withLogging("BrowserContext.pause", () -> {
953
- new WaitableRace<>(asList(context().pause(), (Waitable<JsonElement>) waitableClosedOrCrashed)).get();
+ withLogging("Page.pause", () -> {
+ runUntil(() -> {}, new WaitableRace<>(asList(context().pause(), (Waitable<JsonElement>) waitableClosedOrCrashed)));
954
});
955
}
956
0 commit comments