Uses of Interface
com.microsoft.playwright.Route
-
Packages that use Route Package Description com.microsoft.playwright com.microsoft.playwright.impl -
-
Uses of Route in com.microsoft.playwright
Method parameters in com.microsoft.playwright with type arguments of type Route Modifier and Type Method Description default voidBrowserContext. route(java.lang.String url, java.util.function.Consumer<Route> handler)Routing provides the capability to modify network requests that are made by any page in the browser context.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.default voidBrowserContext. route(java.util.function.Predicate<java.lang.String> url, java.util.function.Consumer<Route> handler)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.default voidBrowserContext. route(java.util.regex.Pattern url, java.util.function.Consumer<Route> handler)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.default voidPage. route(java.lang.String url, java.util.function.Consumer<Route> handler)Routing provides the capability to modify network requests that are made by a page.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.default voidPage. route(java.util.function.Predicate<java.lang.String> url, java.util.function.Consumer<Route> handler)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.default voidPage. route(java.util.regex.Pattern url, java.util.function.Consumer<Route> handler)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.voidBrowserContext. unroute(java.lang.String url, java.util.function.Consumer<Route> handler)Removes a route created withBrowserContext.route().voidBrowserContext. unroute(java.util.function.Predicate<java.lang.String> url, java.util.function.Consumer<Route> handler)Removes a route created withBrowserContext.route().voidBrowserContext. unroute(java.util.regex.Pattern url, java.util.function.Consumer<Route> handler)Removes a route created withBrowserContext.route().voidPage. unroute(java.lang.String url, java.util.function.Consumer<Route> handler)Removes a route created withPage.route().voidPage. unroute(java.util.function.Predicate<java.lang.String> url, java.util.function.Consumer<Route> handler)Removes a route created withPage.route().voidPage. unroute(java.util.regex.Pattern url, java.util.function.Consumer<Route> handler)Removes a route created withPage.route(). -
Uses of Route in com.microsoft.playwright.impl
Classes in com.microsoft.playwright.impl that implement Route Modifier and Type Class Description classRouteImplFields in com.microsoft.playwright.impl with type parameters of type Route Modifier and Type Field Description (package private) java.util.function.Consumer<Route>Router.RouteInfo. handlerMethods in com.microsoft.playwright.impl with parameters of type Route Modifier and Type Method Description (package private) voidHARRouter. handle(Route route)Method parameters in com.microsoft.playwright.impl with type arguments of type Route Modifier and Type Method Description (package private) voidRouter. add(UrlMatcher matcher, java.util.function.Consumer<Route> handler, java.lang.Integer times)(package private) voidRouter. remove(UrlMatcher matcher, java.util.function.Consumer<Route> handler)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)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)private voidBrowserContextImpl. unroute(UrlMatcher matcher, java.util.function.Consumer<Route> handler)voidBrowserContextImpl. unroute(java.lang.String url, java.util.function.Consumer<Route> handler)voidBrowserContextImpl. unroute(java.util.function.Predicate<java.lang.String> url, java.util.function.Consumer<Route> handler)voidBrowserContextImpl. unroute(java.util.regex.Pattern url, java.util.function.Consumer<Route> handler)private voidPageImpl. unroute(UrlMatcher matcher, java.util.function.Consumer<Route> handler)voidPageImpl. unroute(java.lang.String url, java.util.function.Consumer<Route> handler)voidPageImpl. unroute(java.util.function.Predicate<java.lang.String> url, java.util.function.Consumer<Route> handler)voidPageImpl. unroute(java.util.regex.Pattern url, java.util.function.Consumer<Route> handler)Constructor parameters in com.microsoft.playwright.impl with type arguments of type Route Constructor Description RouteInfo(UrlMatcher matcher, java.util.function.Consumer<Route> handler, java.lang.Integer times)
-