Class RealHtmlSingleSelectList
- java.lang.Object
-
- com.axway.ats.uiengine.elements.UiElement
-
- com.axway.ats.uiengine.elements.UiSingleSelectList
-
- com.axway.ats.uiengine.elements.html.HtmlSingleSelectList
-
- com.axway.ats.uiengine.elements.html.realbrowser.RealHtmlSingleSelectList
-
public class RealHtmlSingleSelectList extends HtmlSingleSelectList
A Single Selection HTML list- See Also:
RealHtmlElement
-
-
Field Summary
-
Fields inherited from class com.axway.ats.uiengine.elements.UiElement
log, properties
-
-
Constructor Summary
Constructors Constructor Description RealHtmlSingleSelectList(UiDriver uiDriver, UiElementProperties properties)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<String>getAllPossibleValues()StringgetValue()voidsetValue(String value)set the single selection valuevoidverifyNotValue(String notExpectedValue)Verify the selected value is NOT as specifiedvoidverifyValue(String expectedValue)Verify the selected value is as specified-
Methods inherited from class com.axway.ats.uiengine.elements.UiElement
checkTypeAndRules, getElementProperties, getElementProperty, getPropertyNamesToUseForMatch, getUiDriver, logAction, toString
-
-
-
-
Constructor Detail
-
RealHtmlSingleSelectList
public RealHtmlSingleSelectList(UiDriver uiDriver, UiElementProperties properties)
-
-
Method Detail
-
setValue
public void setValue(String value)
set the single selection value- Specified by:
setValuein classUiSingleSelectList- Parameters:
value- the value to select
-
getValue
public String getValue()
- Specified by:
getValuein classUiSingleSelectList- Returns:
- the single selection value
-
getAllPossibleValues
public List<String> getAllPossibleValues()
- Specified by:
getAllPossibleValuesin classHtmlSingleSelectList- Returns:
- a list with all possible selection values
-
verifyValue
public void verifyValue(String expectedValue)
Verify the selected value is as specified- Specified by:
verifyValuein classUiSingleSelectList- Parameters:
expectedValue-
-
verifyNotValue
public void verifyNotValue(String notExpectedValue)
Verify the selected value is NOT as specified- Specified by:
verifyNotValuein classUiSingleSelectList- Parameters:
notExpectedValue-
-
-