Package com.microsoft.playwright
Class Page.WaitForWebSocketOptions
- java.lang.Object
-
- com.microsoft.playwright.Page.WaitForWebSocketOptions
-
-
Constructor Summary
Constructors Constructor Description WaitForWebSocketOptions()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Page.WaitForWebSocketOptions
setPredicate(Predicate<WebSocket> predicate)
Receives theWebSocket
object and resolves to truthy value when the waiting should resolve.Page.WaitForWebSocketOptions
setTimeout(double timeout)
Maximum time to wait for in milliseconds.
-
-
-
Field Detail
-
predicate
public Predicate<WebSocket> predicate
Receives theWebSocket
object and resolves to truthy value when the waiting should resolve.
-
timeout
public Double timeout
Maximum time to wait for in milliseconds. Defaults to30000
(30 seconds). Pass0
to disable timeout. The default value can be changed by using theBrowserContext.setDefaultTimeout()
.
-
-
Method Detail
-
setPredicate
public Page.WaitForWebSocketOptions setPredicate(Predicate<WebSocket> predicate)
Receives theWebSocket
object and resolves to truthy value when the waiting should resolve.
-
setTimeout
public Page.WaitForWebSocketOptions setTimeout(double timeout)
Maximum time to wait for in milliseconds. Defaults to30000
(30 seconds). Pass0
to disable timeout. The default value can be changed by using theBrowserContext.setDefaultTimeout()
.
-
-