1
0
mirror of synced 2026-08-05 15:06:54 +00:00

docs: fix network interception example to work with 0.190.0 (#262)

This commit is contained in:
Yury Semikhatsky
2021-02-08 09:20:16 -08:00
committed by GitHub
parent 90940b23f3
commit b98e920efb
@@ -26,7 +26,7 @@ public class InterceptNetworkRequests {
Page page = context.newPage()) {
page.route("**", route -> {
System.out.println(route.request().url());
route.continue_();
route.resume();
});
page.navigate("http://todomvc.com");
}