Class RealHtmlTextArea
- java.lang.Object
-
- com.axway.ats.uiengine.elements.UiElement
-
- com.axway.ats.uiengine.elements.UiTextArea
-
- com.axway.ats.uiengine.elements.html.HtmlTextArea
-
- com.axway.ats.uiengine.elements.html.realbrowser.RealHtmlTextArea
-
public class RealHtmlTextArea extends HtmlTextArea
An HTML Text Area. It acts like a multiline Text Box.
Note: all values provided by user or coming from the browser are normalized by replacing all "\r\n" with "\n" and trimming leading and trailing white spaces.- See Also:
RealHtmlElement
-
-
Field Summary
-
Fields inherited from class com.axway.ats.uiengine.elements.UiElement
log, properties
-
-
Constructor Summary
Constructors Constructor Description RealHtmlTextArea(UiDriver uiDriver, UiElementProperties properties)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidappendValue(String value)Append text to the current content of a Text AreaStringgetValue()Get the Text Area valuevoidsetValue(String value)Set the Text Area valuevoidverifyNotValue(String notExpectedValue)Verify the Text Area value is NOT as specifiedvoidverifyValue(String expectedValue)Verify the Text Area value is as specified-
Methods inherited from class com.axway.ats.uiengine.elements.UiElement
checkTypeAndRules, getElementProperties, getElementProperty, getPropertyNamesToUseForMatch, getUiDriver, logAction, toString
-
-
-
-
Constructor Detail
-
RealHtmlTextArea
public RealHtmlTextArea(UiDriver uiDriver, UiElementProperties properties)
-
-
Method Detail
-
getValue
public String getValue()
Get the Text Area value- Specified by:
getValuein classUiTextArea- Returns:
-
setValue
public void setValue(String value)
Set the Text Area value- Specified by:
setValuein classUiTextArea- Parameters:
value-
-
appendValue
public void appendValue(String value)
Append text to the current content of a Text Area- Specified by:
appendValuein classUiTextArea- Parameters:
value-
-
verifyValue
public void verifyValue(String expectedValue)
Verify the Text Area value is as specified- Specified by:
verifyValuein classUiTextArea- Parameters:
expectedValue-
-
verifyNotValue
public void verifyNotValue(String notExpectedValue)
Verify the Text Area value is NOT as specified- Specified by:
verifyNotValuein classUiTextArea- Parameters:
notExpectedValue-
-
-