Uses of Class
com.microsoft.playwright.BrowserContext.RouteOptions
-
Packages that use BrowserContext.RouteOptions Package Description com.microsoft.playwright com.microsoft.playwright.impl -
-
Uses of BrowserContext.RouteOptions in com.microsoft.playwright
Methods in com.microsoft.playwright that return BrowserContext.RouteOptions Modifier and Type Method Description BrowserContext.RouteOptionsBrowserContext.RouteOptions. setTimes(int times)How often a route should be used.Methods in com.microsoft.playwright with parameters of type BrowserContext.RouteOptions Modifier and Type Method Description voidBrowserContext. route(java.lang.String url, java.util.function.Consumer<Route> handler, BrowserContext.RouteOptions options)Routing provides the capability to modify network requests that are made by any page in the browser context.voidBrowserContext. route(java.util.function.Predicate<java.lang.String> url, java.util.function.Consumer<Route> handler, BrowserContext.RouteOptions options)Routing provides the capability to modify network requests that are made by any page in the browser context.voidBrowserContext. route(java.util.regex.Pattern url, java.util.function.Consumer<Route> handler, BrowserContext.RouteOptions options)Routing provides the capability to modify network requests that are made by any page in the browser context. -
Uses of BrowserContext.RouteOptions in com.microsoft.playwright.impl
Methods in com.microsoft.playwright.impl with parameters of type BrowserContext.RouteOptions Modifier and Type Method Description private voidBrowserContextImpl. route(UrlMatcher matcher, java.util.function.Consumer<Route> handler, BrowserContext.RouteOptions options)voidBrowserContextImpl. route(java.lang.String url, java.util.function.Consumer<Route> handler, BrowserContext.RouteOptions options)voidBrowserContextImpl. route(java.util.function.Predicate<java.lang.String> url, java.util.function.Consumer<Route> handler, BrowserContext.RouteOptions options)voidBrowserContextImpl. route(java.util.regex.Pattern url, java.util.function.Consumer<Route> handler, BrowserContext.RouteOptions options)
-