Method | Description | |
---|---|---|
Navigate ( |
Navigate to the specified form by performing a submit of that form.
|
|
Navigate ( |
Navigate based on a form. Complete and post the form.
|
|
Navigate ( |
Navigate to a new page based on a link.
|
|
Navigate ( String url ) : void |
Navigate based on a string URL.
|
|
Navigate ( |
Navigate to a page based on a URL object. This will be an HTTP GET operation.
|
|
Navigate ( |
Navigate to a page and post the specified data.
|
public Navigate ( |
||
form | The form to be submitted. | |
return | void |
public Navigate ( |
||
form | The form to be posted. | |
submit | The submit button on the form to simulate clicking. | |
return | void |
public Navigate ( |
||
link | The link to navigate to. | |
return | void |
public Navigate ( String url ) : void | ||
url | String | The URL to navigate to. |
return | void |
public Navigate ( |
||
url | The URL to navigate to. | |
return | void |
public Navigate ( |
||
url | The URL to post the data to. | |
istream | Stream | The data to post to the page. |
return | void |