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