default void |
BrowserContext.route(String url,
Consumer<Route> handler) |
Routing provides the capability to modify network requests that are made by any page in the browser context.
|
void |
BrowserContext.route(String url,
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 void |
BrowserContext.route(Predicate<String> url,
Consumer<Route> handler) |
Routing provides the capability to modify network requests that are made by any page in the browser context.
|
void |
BrowserContext.route(Predicate<String> url,
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 void |
BrowserContext.route(Pattern url,
Consumer<Route> handler) |
Routing provides the capability to modify network requests that are made by any page in the browser context.
|
void |
BrowserContext.route(Pattern url,
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 void |
Page.route(String url,
Consumer<Route> handler) |
Routing provides the capability to modify network requests that are made by a page.
|
void |
Page.route(String url,
Consumer<Route> handler,
Page.RouteOptions options) |
Routing provides the capability to modify network requests that are made by a page.
|
default void |
Page.route(Predicate<String> url,
Consumer<Route> handler) |
Routing provides the capability to modify network requests that are made by a page.
|
void |
Page.route(Predicate<String> url,
Consumer<Route> handler,
Page.RouteOptions options) |
Routing provides the capability to modify network requests that are made by a page.
|
default void |
Page.route(Pattern url,
Consumer<Route> handler) |
Routing provides the capability to modify network requests that are made by a page.
|
void |
Page.route(Pattern url,
Consumer<Route> handler,
Page.RouteOptions options) |
Routing provides the capability to modify network requests that are made by a page.
|
void |
BrowserContext.unroute(String url,
Consumer<Route> handler) |
|
void |
BrowserContext.unroute(Predicate<String> url,
Consumer<Route> handler) |
|
void |
BrowserContext.unroute(Pattern url,
Consumer<Route> handler) |
|
void |
Page.unroute(String url,
Consumer<Route> handler) |
|
void |
Page.unroute(Predicate<String> url,
Consumer<Route> handler) |
|
void |
Page.unroute(Pattern url,
Consumer<Route> handler) |
|