default Response |
Page.goBack() |
Returns the main resource response.
|
Response |
Page.goBack(Page.GoBackOptions options) |
Returns the main resource response.
|
default Response |
Page.goForward() |
Returns the main resource response.
|
Response |
Page.goForward(Page.GoForwardOptions options) |
Returns the main resource response.
|
default Response |
Frame.navigate(String url) |
Returns the main resource response.
|
Response |
Frame.navigate(String url,
Frame.NavigateOptions options) |
Returns the main resource response.
|
default Response |
Page.navigate(String url) |
Returns the main resource response.
|
Response |
Page.navigate(String url,
Page.NavigateOptions options) |
Returns the main resource response.
|
default Response |
Page.reload() |
This method reloads the current page, in the same way as if the user had triggered a browser refresh.
|
Response |
Page.reload(Page.ReloadOptions options) |
This method reloads the current page, in the same way as if the user had triggered a browser refresh.
|
Response |
Request.response() |
Returns the matching Response object, or null if the response was not received due to error.
|
Response |
Frame.waitForNavigation(Frame.WaitForNavigationOptions options,
Runnable callback) |
Deprecated.
|
default Response |
Frame.waitForNavigation(Runnable callback) |
Deprecated.
|
Response |
Page.waitForNavigation(Page.WaitForNavigationOptions options,
Runnable callback) |
Deprecated.
|
default Response |
Page.waitForNavigation(Runnable callback) |
Deprecated.
|
Response |
Page.waitForResponse(String urlOrPredicate,
Page.WaitForResponseOptions options,
Runnable callback) |
Returns the matched response.
|
default Response |
Page.waitForResponse(String urlOrPredicate,
Runnable callback) |
Returns the matched response.
|
Response |
Page.waitForResponse(Predicate<Response> urlOrPredicate,
Page.WaitForResponseOptions options,
Runnable callback) |
Returns the matched response.
|
default Response |
Page.waitForResponse(Predicate<Response> urlOrPredicate,
Runnable callback) |
Returns the matched response.
|
Response |
Page.waitForResponse(Pattern urlOrPredicate,
Page.WaitForResponseOptions options,
Runnable callback) |
Returns the matched response.
|
default Response |
Page.waitForResponse(Pattern urlOrPredicate,
Runnable callback) |
Returns the matched response.
|