Class UiTextBox

  • Direct Known Subclasses:
    HtmlTextBox

    public abstract class UiTextBox
    extends UiElement
    A Text Box that can be edited
    • Method Detail

      • setValue

        public abstract void setValue​(String value)
        Set the Text Box value
        Parameters:
        value -
      • getValue

        public abstract String getValue()
        Get the Text Box value
        Returns:
      • appendValue

        public abstract void appendValue​(String value)
        Append text to the current content of a Text Box
        Parameters:
        value -
      • verifyValue

        public abstract void verifyValue​(String expectedValue)
        Verify the Text Box value is as specified
        Parameters:
        expectedValue -
      • verifyNotValue

        public abstract void verifyNotValue​(String notExpectedValue)
        Verify the Text Box value is NOT as specified
        Parameters:
        notExpectedValue -