public interface Form
Modifier and Type | Method and Description |
---|---|
void |
clickAnyButtonWithValue(String value)
Click the first button you find with the given value.
|
void |
clickButtonWithValue(String value)
Click only a single button with the specific value.
|
com.meterware.httpunit.WebForm[] |
getForms()
Returns all the forms in the current response.
|
void |
selectOption(String selectName,
String option)
Select an option with a given display value in a select element.
|
void |
selectOptionsByDisplayName(String selectName,
String[] options)
Select multiple options with given display values in a select element.
|
void |
selectOptionsByDisplayName(String selectName,
String option,
String... moreOptions)
Select multiple options with given display values in a select element.
|
void |
selectOptionsByValue(String selectName,
String[] options)
Select multiple options with given values in a select element.
|
void |
selectOptionsByValue(String selectName,
String option,
String... moreOptions)
Select multiple options with given values in a select element.
|
com.meterware.httpunit.WebForm |
switchTo(String formId)
Switches HttpUnit current form and returns it.
|
void selectOption(String selectName, String option)
selectName
- name of select element.option
- display value of option to be selected.void selectOptionsByDisplayName(String selectName, String option, String... moreOptions)
selectName
- name of select element.option
- display value of an option to be selected.moreOptions
- display values of additional options to be selected.void selectOptionsByDisplayName(String selectName, String[] options)
selectName
- name of select element.options
- display values of options to be selected.void selectOptionsByValue(String selectName, String option, String... moreOptions)
selectName
- name of select element.option
- value of option to be selected.moreOptions
- values of additional options to be selected.void selectOptionsByValue(String selectName, String[] options)
selectName
- name of select element.options
- values of options to be selected.com.meterware.httpunit.WebForm[] getForms()
com.meterware.httpunit.WebForm switchTo(String formId)
formId
- the id of the formvoid clickButtonWithValue(String value)
value
- the value attribute of the of the button element to click.void clickAnyButtonWithValue(String value)
value
- the value attribute of the of the button element to click.Copyright © 2002-2019 Atlassian. All Rights Reserved.