Uses of Class
com.microsoft.playwright.Page.WaitForRequestOptions
-
Packages that use Page.WaitForRequestOptions Package Description com.microsoft.playwright com.microsoft.playwright.impl -
-
Uses of Page.WaitForRequestOptions in com.microsoft.playwright
Methods in com.microsoft.playwright that return Page.WaitForRequestOptions Modifier and Type Method Description Page.WaitForRequestOptionsPage.WaitForRequestOptions. setTimeout(double timeout)Maximum wait time in milliseconds, defaults to 30 seconds, pass0to disable the timeout.Methods in com.microsoft.playwright with parameters of type Page.WaitForRequestOptions Modifier and Type Method Description RequestPage. waitForRequest(java.lang.String urlOrPredicate, Page.WaitForRequestOptions options, java.lang.Runnable callback)Waits for the matching request and returns it.RequestPage. waitForRequest(java.util.function.Predicate<Request> urlOrPredicate, Page.WaitForRequestOptions options, java.lang.Runnable callback)Waits for the matching request and returns it.RequestPage. waitForRequest(java.util.regex.Pattern urlOrPredicate, Page.WaitForRequestOptions options, java.lang.Runnable callback)Waits for the matching request and returns it. -
Uses of Page.WaitForRequestOptions in com.microsoft.playwright.impl
Methods in com.microsoft.playwright.impl with parameters of type Page.WaitForRequestOptions Modifier and Type Method Description private RequestPageImpl. waitForRequest(UrlMatcher urlMatcher, java.util.function.Predicate<Request> predicate, Page.WaitForRequestOptions options, java.lang.Runnable code)RequestPageImpl. waitForRequest(java.lang.String urlGlob, Page.WaitForRequestOptions options, java.lang.Runnable code)RequestPageImpl. waitForRequest(java.util.function.Predicate<Request> predicate, Page.WaitForRequestOptions options, java.lang.Runnable code)RequestPageImpl. waitForRequest(java.util.regex.Pattern urlPattern, Page.WaitForRequestOptions options, java.lang.Runnable code)private RequestPageImpl. waitForRequestImpl(java.util.function.Predicate<Request> predicate, Page.WaitForRequestOptions options, java.lang.Runnable code)
-