Interface CStringWaiter

    • Method Summary

      All Methods Instance Methods Default Methods 
      Modifier and Type Method Description
      default boolean waitCenterPadEquals​(int size, java.lang.String padStr, java.lang.String expected)
      Wait for CConfigs.TypeExtension.getDefaultWaitInSeconds() number of milliseconds until result of StringUtils.center(String, int, String) is equals to expected value.
      default boolean waitCenterPadEquals​(int size, java.lang.String padStr, java.lang.String expected, int waitInSeconds)
      Wait for defined number of seconds until result of StringUtils.center(String, int, String) is equals to expected value.
      default boolean waitCenterPadEquals​(int size, java.lang.String padStr, java.lang.String expected, int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds until result of StringUtils.center(String, int, String) is equals to expected value.
      default boolean waitCenterPadNotEquals​(int size, java.lang.String padStr, java.lang.String expected)
      Wait for CConfigs.TypeExtension.getDefaultWaitInSeconds() number of milliseconds until result of StringUtils.center(String, int, String) is NOT equals to expected value.
      default boolean waitCenterPadNotEquals​(int size, java.lang.String padStr, java.lang.String expected, int waitInSeconds)
      Wait for defined number of seconds until result of StringUtils.center(String, int, String) is NOT equals to expected value.
      default boolean waitCenterPadNotEquals​(int size, java.lang.String padStr, java.lang.String expected, int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds until result of StringUtils.center(String, int, String) is NOT equals to expected value.
      default boolean waitCompare​(java.lang.String stringToCompare, int expected)
      Wait for CConfigs.TypeExtension.getDefaultWaitInSeconds() number of milliseconds until result of StringUtils.compare(String, String) equals to the expected value.
      default boolean waitCompare​(java.lang.String stringToCompare, int expected, int waitInSeconds)
      Wait for defined number of seconds until result of StringUtils.compare(String, String) equals to the expected value.
      default boolean waitCompare​(java.lang.String stringToCompare, int expected, int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds until result of StringUtils.compare(String, String) equals to the expected value.
      default boolean waitCompareIgnoreCase​(java.lang.String stringToCompare, int expected)
      Wait for CConfigs.TypeExtension.getDefaultWaitInSeconds() number of milliseconds until result of StringUtils.compareIgnoreCase(String, String) equals to the expected value.
      default boolean waitCompareIgnoreCase​(java.lang.String stringToCompare, int expected, int waitInSeconds)
      Wait for defined number of seconds until result of StringUtils.compareIgnoreCase(String, String) equals to the expected value.
      default boolean waitCompareIgnoreCase​(java.lang.String stringToCompare, int expected, int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds until result of StringUtils.compareIgnoreCase(String, String) equals to the expected value.
      default boolean waitContains​(java.lang.String expected)
      Wait for CConfigs.TypeExtension.getDefaultWaitInSeconds() number of milliseconds until result of StringUtils.contains(CharSequence, CharSequence) is true.
      default boolean waitContains​(java.lang.String expected, int waitInSeconds)
      Wait for defined number of seconds until result of StringUtils.contains(CharSequence, CharSequence) is true.
      default boolean waitContains​(java.lang.String expected, int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds until result of StringUtils.contains(CharSequence, CharSequence) is true.
      default boolean waitContainsIgnoreCase​(java.lang.String expected)
      Wait for CConfigs.TypeExtension.getDefaultWaitInSeconds() number of milliseconds until result of StringUtils.containsIgnoreCase(CharSequence, CharSequence) is true, ignoring case.
      default boolean waitContainsIgnoreCase​(java.lang.String expected, int waitInSeconds)
      Wait for defined number of seconds until result of StringUtils.containsIgnoreCase(CharSequence, CharSequence) is true, ignoring case.
      default boolean waitContainsIgnoreCase​(java.lang.String expected, int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds until result of StringUtils.containsIgnoreCase(CharSequence, CharSequence) is true, ignoring case.
      default boolean waitEndsWith​(java.lang.String suffix)
      Wait for CConfigs.TypeExtension.getDefaultWaitInSeconds() number of milliseconds until result of StringUtils.endsWith(CharSequence, CharSequence) is true
      default boolean waitEndsWith​(java.lang.String suffix, int waitInSeconds)
      Wait for defined number of seconds until result of StringUtils.endsWith(CharSequence, CharSequence) is true
      default boolean waitEndsWith​(java.lang.String suffix, int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds until result of StringUtils.endsWith(CharSequence, CharSequence) is true
      default boolean waitEndsWithAny​(java.util.List<java.lang.String> searchInputs)
      Wait for CConfigs.TypeExtension.getDefaultWaitInSeconds() number of milliseconds until result of StringUtils.endsWithAny(CharSequence, CharSequence...) is true.
      default boolean waitEndsWithAny​(java.util.List<java.lang.String> searchInputs, int waitInSeconds)
      Wait for defined number of seconds until result of StringUtils.endsWithAny(CharSequence, CharSequence...) is true.
      default boolean waitEndsWithAny​(java.util.List<java.lang.String> searchInputs, int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds until result of StringUtils.endsWithAny(CharSequence, CharSequence...) is true.
      default boolean waitEndsWithIgnoreCase​(java.lang.String suffix)
      Wait for CConfigs.TypeExtension.getDefaultWaitInSeconds() number of milliseconds until result of StringUtils.endsWithIgnoreCase(CharSequence, CharSequence) is true.
      default boolean waitEndsWithIgnoreCase​(java.lang.String suffix, int waitInSeconds)
      Wait for defined number of seconds until result of StringUtils.endsWithIgnoreCase(CharSequence, CharSequence) is true.
      default boolean waitEndsWithIgnoreCase​(java.lang.String suffix, int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds until result of StringUtils.endsWithIgnoreCase(CharSequence, CharSequence) is true.
      default boolean waitEndsWithNone​(java.util.List<java.lang.String> searchInputs)
      Wait for CConfigs.TypeExtension.getDefaultWaitInSeconds() number of milliseconds until result of StringUtils.endsWithAny(CharSequence, CharSequence...) is false.
      default boolean waitEndsWithNone​(java.util.List<java.lang.String> searchInputs, int waitInSeconds)
      Wait for defined number of seconds until result of StringUtils.endsWithAny(CharSequence, CharSequence...) is false.
      default boolean waitEndsWithNone​(java.util.List<java.lang.String> searchInputs, int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds until result of StringUtils.endsWithAny(CharSequence, CharSequence...) is false.
      default boolean waitEqualsAnyIgnoreCase​(java.util.List<java.lang.String> expectedList)
      Wait for CConfigs.TypeExtension.getDefaultWaitInSeconds() number of milliseconds until result of StringUtils.equalsAnyIgnoreCase(CharSequence, CharSequence...) equals to the expected value, ignoring case.
      default boolean waitEqualsAnyIgnoreCase​(java.util.List<java.lang.String> expectedList, int waitInSeconds)
      Wait for defined number of seconds until result of StringUtils.equalsAnyIgnoreCase(CharSequence, CharSequence...) equals to the expected value, ignoring case.
      default boolean waitEqualsAnyIgnoreCase​(java.util.List<java.lang.String> expectedList, int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds until result of StringUtils.equalsAnyIgnoreCase(CharSequence, CharSequence...) equals to the expected value, ignoring case.
      default boolean waitEqualsIgnoreCase​(java.lang.String expected)
      Wait for CConfigs.TypeExtension.getDefaultWaitInSeconds() number of milliseconds till if StringUtils.equalsIgnoreCase(CharSequence, CharSequence) value equals the expected value.
      default boolean waitEqualsIgnoreCase​(java.lang.String expected, int waitInSeconds)
      Wait for defined number of seconds till if StringUtils.equalsIgnoreCase(CharSequence, CharSequence) value equals the expected value.
      default boolean waitEqualsIgnoreCase​(java.lang.String expected, int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds till if StringUtils.equalsIgnoreCase(CharSequence, CharSequence) value equals the expected value.
      default boolean waitEqualsIgnoreWhiteSpaces​(java.lang.String expected)
      Wait for CConfigs.TypeExtension.getDefaultWaitInSeconds() number of milliseconds till if value is equal to expected after removing all WhiteSpaces from both.
      default boolean waitEqualsIgnoreWhiteSpaces​(java.lang.String expected, int waitInSeconds)
      Wait for defined number of seconds till if value is equal to expected after removing all WhiteSpaces from both.
      default boolean waitEqualsIgnoreWhiteSpaces​(java.lang.String expected, int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds till if value is equal to expected after removing all WhiteSpaces from both.
      default boolean waitEqualsNoneIgnoreCase​(java.util.List<java.lang.String> expectedList)
      Wait for CConfigs.TypeExtension.getDefaultWaitInSeconds() number of milliseconds until result of StringUtils.equalsAnyIgnoreCase(CharSequence, CharSequence...) is false, ignoring case.
      default boolean waitEqualsNoneIgnoreCase​(java.util.List<java.lang.String> expectedList, int waitInSeconds)
      Wait for defined number of seconds until result of StringUtils.equalsAnyIgnoreCase(CharSequence, CharSequence...) is false, ignoring case.
      default boolean waitEqualsNoneIgnoreCase​(java.util.List<java.lang.String> expectedList, int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds until result of StringUtils.equalsAnyIgnoreCase(CharSequence, CharSequence...) is false, ignoring case.
      default boolean waitIsAlpha()
      Wait for CConfigs.TypeExtension.getDefaultWaitInSeconds() number of milliseconds until result of StringUtils.isAlpha(CharSequence) is true.
      default boolean waitIsAlpha​(int waitInSeconds)
      Wait for defined number of seconds until result of StringUtils.isAlpha(CharSequence) is true.
      default boolean waitIsAlpha​(int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds until result of StringUtils.isAlpha(CharSequence) is true.
      default boolean waitIsAlphanumeric()
      Wait for CConfigs.TypeExtension.getDefaultWaitInSeconds() number of milliseconds until result of StringUtils.isAlphanumeric(CharSequence) is true.
      default boolean waitIsAlphanumeric​(int waitInSeconds)
      Wait for defined number of seconds until result of StringUtils.isAlphanumeric(CharSequence) is true.
      default boolean waitIsAlphanumeric​(int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds until result of StringUtils.isAlphanumeric(CharSequence) is true.
      default boolean waitIsAlphanumericSpace()
      Wait for CConfigs.TypeExtension.getDefaultWaitInSeconds() number of milliseconds until result of StringUtils.isAlphanumericSpace(CharSequence) is true.
      default boolean waitIsAlphanumericSpace​(int waitInSeconds)
      Wait for defined number of seconds until result of StringUtils.isAlphanumericSpace(CharSequence) is true.
      default boolean waitIsAlphanumericSpace​(int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds until result of StringUtils.isAlphanumericSpace(CharSequence) is true.
      default boolean waitIsAlphaSpace()
      Wait for CConfigs.TypeExtension.getDefaultWaitInSeconds() number of milliseconds until result of StringUtils.isAlphaSpace(CharSequence) is true.
      default boolean waitIsAlphaSpace​(int waitInSeconds)
      Wait for defined number of seconds until result of StringUtils.isAlphaSpace(CharSequence) is true.
      default boolean waitIsAlphaSpace​(int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds until result of StringUtils.isAlphaSpace(CharSequence) is true.
      default boolean waitIsAsciiPrintable()
      Wait for CConfigs.TypeExtension.getDefaultWaitInSeconds() number of milliseconds until result of StringUtils.isAsciiPrintable(CharSequence) is true.
      default boolean waitIsAsciiPrintable​(int waitInSeconds)
      Wait for defined number of seconds until result of StringUtils.isAsciiPrintable(CharSequence) is true.
      default boolean waitIsAsciiPrintable​(int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds until result of StringUtils.isAsciiPrintable(CharSequence) is true.
      default boolean waitIsBlank()
      Wait for CConfigs.TypeExtension.getDefaultWaitInSeconds() number of milliseconds till if String value is blank (Null or Empty)
      default boolean waitIsBlank​(int waitInSeconds)
      Wait for defined number of seconds till if String value is blank (Null or Empty)
      default boolean waitIsBlank​(int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds till if String value is blank (Null or Empty)
      default boolean waitIsEmpty()
      Wait for CConfigs.TypeExtension.getDefaultWaitInSeconds() number of milliseconds till if String value is empty
      default boolean waitIsEmpty​(int waitInSeconds)
      Wait for defined number of seconds till if String value is empty
      default boolean waitIsEmpty​(int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds till if String value is empty
      default boolean waitIsEmptyOrAlpha()
      Wait for CConfigs.TypeExtension.getDefaultWaitInSeconds() number of milliseconds till if string value is empty or the result of StringUtils.isAlpha(CharSequence) is true.
      default boolean waitIsEmptyOrAlpha​(int waitInSeconds)
      Wait for defined number of seconds till if string value is empty or the result of StringUtils.isAlpha(CharSequence) is true.
      default boolean waitIsEmptyOrAlpha​(int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds till if string value is empty or the result of StringUtils.isAlpha(CharSequence) is true.
      default boolean waitIsEmptyOrAlphanumeric()
      Wait for CConfigs.TypeExtension.getDefaultWaitInSeconds() number of milliseconds till if string value is empty or the result of StringUtils.isAlphanumeric(CharSequence) is true.
      default boolean waitIsEmptyOrAlphanumeric​(int waitInSeconds)
      Wait for defined number of seconds till if string value is empty or the result of StringUtils.isAlphanumeric(CharSequence) is true.
      default boolean waitIsEmptyOrAlphanumeric​(int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds till if string value is empty or the result of StringUtils.isAlphanumeric(CharSequence) is true.
      default boolean waitIsEmptyOrNotAlpha()
      Wait for CConfigs.TypeExtension.getDefaultWaitInSeconds() number of milliseconds till if string value is empty or the result of StringUtils.isAlpha(CharSequence) is false.
      default boolean waitIsEmptyOrNotAlpha​(int waitInSeconds)
      Wait for defined number of seconds till if string value is empty or the result of StringUtils.isAlpha(CharSequence) is false.
      default boolean waitIsEmptyOrNotAlpha​(int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds till if string value is empty or the result of StringUtils.isAlpha(CharSequence) is false.
      default boolean waitIsEmptyOrNotAlphanumeric()
      Wait for CConfigs.TypeExtension.getDefaultWaitInSeconds() number of milliseconds till if string value is empty or the result of StringUtils.isAlphanumeric(CharSequence) is false.
      default boolean waitIsEmptyOrNotAlphanumeric​(int waitInSeconds)
      Wait for defined number of seconds till if string value is empty or the result of StringUtils.isAlphanumeric(CharSequence) is false.
      default boolean waitIsEmptyOrNotAlphanumeric​(int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds till if string value is empty or the result of StringUtils.isAlphanumeric(CharSequence) is false.
      default boolean waitIsEmptyOrNotNumeric()
      Wait for CConfigs.TypeExtension.getDefaultWaitInSeconds() number of milliseconds till if string is empty or the result of StringUtils.isNumeric(CharSequence) is false.
      default boolean waitIsEmptyOrNotNumeric​(int waitInSeconds)
      Wait for defined number of seconds till if string is empty or the result of StringUtils.isNumeric(CharSequence) is false.
      default boolean waitIsEmptyOrNotNumeric​(int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds till if string is empty or the result of StringUtils.isNumeric(CharSequence) is false.
      default boolean waitIsEmptyOrNumeric()
      Wait for CConfigs.TypeExtension.getDefaultWaitInSeconds() number of milliseconds till if string is empty or the result of StringUtils.isNumeric(CharSequence) is true.
      default boolean waitIsEmptyOrNumeric​(int waitInSeconds)
      Wait for defined number of seconds till if string is empty or the result of StringUtils.isNumeric(CharSequence) is true.
      default boolean waitIsEmptyOrNumeric​(int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds till if string is empty or the result of StringUtils.isNumeric(CharSequence) is true.
      default boolean waitIsMatches​(java.lang.String pattern)
      Wait for CConfigs.TypeExtension.getDefaultWaitInSeconds() number of milliseconds till if String value match provided pattern
      default boolean waitIsMatches​(java.lang.String pattern, int waitInSeconds)
      Wait for defined number of seconds till if String value match provided pattern
      default boolean waitIsMatches​(java.lang.String pattern, int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds till if String value match provided pattern
      default boolean waitIsMatches​(java.util.regex.Pattern pattern)
      Wait for CConfigs.TypeExtension.getDefaultWaitInSeconds() number of milliseconds till if String value match provided pattern
      default boolean waitIsMatches​(java.util.regex.Pattern pattern, int waitInSeconds)
      Wait for defined number of seconds till if String value match provided pattern
      default boolean waitIsMatches​(java.util.regex.Pattern pattern, int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds till if String value match provided pattern
      default boolean waitIsNotAlpha()
      Wait for CConfigs.TypeExtension.getDefaultWaitInSeconds() number of milliseconds until result of StringUtils.isAlpha(CharSequence) is false.
      default boolean waitIsNotAlpha​(int waitInSeconds)
      Wait for defined number of seconds until result of StringUtils.isAlpha(CharSequence) is false.
      default boolean waitIsNotAlpha​(int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds until result of StringUtils.isAlpha(CharSequence) is false.
      default boolean waitIsNotAlphanumeric()
      Wait for CConfigs.TypeExtension.getDefaultWaitInSeconds() number of milliseconds until result of StringUtils.isAlphanumeric(CharSequence) is false.
      default boolean waitIsNotAlphanumeric​(int waitInSeconds)
      Wait for defined number of seconds until result of StringUtils.isAlphanumeric(CharSequence) is false.
      default boolean waitIsNotAlphanumeric​(int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds until result of StringUtils.isAlphanumeric(CharSequence) is false.
      default boolean waitIsNotAlphanumericSpace()
      Wait for CConfigs.TypeExtension.getDefaultWaitInSeconds() number of milliseconds until result of StringUtils.isAlphanumericSpace(CharSequence) is false.
      default boolean waitIsNotAlphanumericSpace​(int waitInSeconds)
      Wait for defined number of seconds until result of StringUtils.isAlphanumericSpace(CharSequence) is false.
      default boolean waitIsNotAlphanumericSpace​(int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds until result of StringUtils.isAlphanumericSpace(CharSequence) is false.
      default boolean waitIsNotAlphaSpace()
      Wait for CConfigs.TypeExtension.getDefaultWaitInSeconds() number of milliseconds until result of StringUtils.isAlphaSpace(CharSequence) is false.
      default boolean waitIsNotAlphaSpace​(int waitInSeconds)
      Wait for defined number of seconds until result of StringUtils.isAlphaSpace(CharSequence) is false.
      default boolean waitIsNotAlphaSpace​(int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds until result of StringUtils.isAlphaSpace(CharSequence) is false.
      default boolean waitIsNotAsciiPrintable()
      Wait for CConfigs.TypeExtension.getDefaultWaitInSeconds() number of milliseconds until result of StringUtils.isAsciiPrintable(CharSequence) is false.
      default boolean waitIsNotAsciiPrintable​(int waitInSeconds)
      Wait for defined number of seconds until result of StringUtils.isAsciiPrintable(CharSequence) is false.
      default boolean waitIsNotAsciiPrintable​(int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds until result of StringUtils.isAsciiPrintable(CharSequence) is false.
      default boolean waitIsNotBlank()
      Wait for CConfigs.TypeExtension.getDefaultWaitInSeconds() number of milliseconds till if String value is not blank (Null or Empty)
      default boolean waitIsNotBlank​(int waitInSeconds)
      Wait for defined number of seconds till if String value is not blank (Null or Empty)
      default boolean waitIsNotBlank​(int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds till if String value is not blank (Null or Empty)
      default boolean waitIsNotEmpty()
      Wait for CConfigs.TypeExtension.getDefaultWaitInSeconds() number of milliseconds till String value is not empty
      default boolean waitIsNotEmpty​(int waitInSeconds)
      Wait for defined number of seconds till String value is not empty
      default boolean waitIsNotEmpty​(int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds till String value is not empty
      default boolean waitIsNotMatches​(java.lang.String pattern)
      Wait for CConfigs.TypeExtension.getDefaultWaitInSeconds() number of milliseconds till if String value does not match provided pattern
      default boolean waitIsNotMatches​(java.lang.String pattern, int waitInSeconds)
      Wait for defined number of seconds till if String value does not match provided pattern
      default boolean waitIsNotMatches​(java.lang.String pattern, int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds till if String value does not match provided pattern
      default boolean waitIsNotMatches​(java.util.regex.Pattern pattern)
      Wait for CConfigs.TypeExtension.getDefaultWaitInSeconds() number of milliseconds till if String value does not match provided pattern
      default boolean waitIsNotMatches​(java.util.regex.Pattern pattern, int waitInSeconds)
      Wait for defined number of seconds till if String value does not match provided pattern
      default boolean waitIsNotMatches​(java.util.regex.Pattern pattern, int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds till if String value does not match provided pattern
      default boolean waitIsNotNumeric()
      Wait for CConfigs.TypeExtension.getDefaultWaitInSeconds() number of milliseconds until result of StringUtils.isNumeric(CharSequence) is false.
      default boolean waitIsNotNumeric​(int waitInSeconds)
      Wait for defined number of seconds until result of StringUtils.isNumeric(CharSequence) is false.
      default boolean waitIsNotNumeric​(int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds until result of StringUtils.isNumeric(CharSequence) is false.
      default boolean waitIsNotNumericSpace()
      Wait for CConfigs.TypeExtension.getDefaultWaitInSeconds() number of milliseconds until result of StringUtils.isNumericSpace(CharSequence) is false.
      default boolean waitIsNotNumericSpace​(int waitInSeconds)
      Wait for defined number of seconds until result of StringUtils.isNumericSpace(CharSequence) is false.
      default boolean waitIsNotNumericSpace​(int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds until result of StringUtils.isNumericSpace(CharSequence) is false.
      default boolean waitIsNumeric()
      Wait for CConfigs.TypeExtension.getDefaultWaitInSeconds() number of milliseconds until result of StringUtils.isNumeric(CharSequence) is true.
      default boolean waitIsNumeric​(int waitInSeconds)
      Wait for defined number of seconds until result of StringUtils.isNumeric(CharSequence) is true.
      default boolean waitIsNumeric​(int minLength, int maxLength)
      Wait for CConfigs.TypeExtension.getDefaultWaitInSeconds() number of milliseconds till if string value is empty or the result of StringUtils.isNumeric(CharSequence) is true and string length is between minLength and maxLength.
      default boolean waitIsNumeric​(int minLength, int maxLength, int waitInSeconds)
      Wait for defined number of seconds till if string value is empty or the result of StringUtils.isNumeric(CharSequence) is true and string length is between minLength and maxLength.
      default boolean waitIsNumeric​(int minLength, int maxLength, int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds till if string value is empty or the result of StringUtils.isNumeric(CharSequence) is true and string length is between minLength and maxLength.
      default boolean waitIsNumericSpace()
      Wait for CConfigs.TypeExtension.getDefaultWaitInSeconds() number of milliseconds until result of StringUtils.isNumericSpace(CharSequence) is true.
      default boolean waitIsNumericSpace​(int waitInSeconds)
      Wait for defined number of seconds until result of StringUtils.isNumericSpace(CharSequence) is true.
      default boolean waitIsNumericSpace​(int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds until result of StringUtils.isNumericSpace(CharSequence) is true.
      default boolean waitLeftPadEquals​(int size, java.lang.String padStr, java.lang.String expected)
      Wait for defined number of seconds until result of StringUtils.leftPad(String, int, String) is equals to expected value.
      default boolean waitLeftPadEquals​(int size, java.lang.String padStr, java.lang.String expected, int waitInSeconds)
      Wait for defined number of seconds until result of StringUtils.leftPad(String, int, String) is equals to expected value.
      default boolean waitLeftPadEquals​(int size, java.lang.String padStr, java.lang.String expected, int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds until result of StringUtils.leftPad(String, int, String) is equals to expected value.
      default boolean waitLeftPadNotEquals​(int size, java.lang.String padStr, java.lang.String expected)
      Wait for defined number of seconds until result of StringUtils.leftPad(String, int, String) is NOT equals to expected value.
      default boolean waitLeftPadNotEquals​(int size, java.lang.String padStr, java.lang.String expected, int waitInSeconds)
      Wait for defined number of seconds until result of StringUtils.leftPad(String, int, String) is NOT equals to expected value.
      default boolean waitLeftPadNotEquals​(int size, java.lang.String padStr, java.lang.String expected, int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds until result of StringUtils.leftPad(String, int, String) is NOT equals to expected value.
      default boolean waitLeftValueEquals​(int len, java.lang.String expected)
      Wait for defined number of seconds until result of StringUtils.left(String, int) equals to expected value.
      default boolean waitLeftValueEquals​(int len, java.lang.String expected, int waitInSeconds)
      Wait for defined number of seconds until result of StringUtils.left(String, int) equals to expected value.
      default boolean waitLeftValueEquals​(int len, java.lang.String expected, int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds until result of StringUtils.left(String, int) equals to expected value.
      default boolean waitLeftValueNotEquals​(int len, java.lang.String expected)
      Wait for defined number of seconds until result of StringUtils.left(String, int) NOT equals to expected value.
      default boolean waitLeftValueNotEquals​(int len, java.lang.String expected, int waitInSeconds)
      Wait for defined number of seconds until result of StringUtils.left(String, int) NOT equals to expected value.
      default boolean waitLeftValueNotEquals​(int len, java.lang.String expected, int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds until result of StringUtils.left(String, int) NOT equals to expected value.
      default boolean waitLengthEquals​(int expected)
      Wait for defined number of seconds until result of StringUtils.length(CharSequence) is equals to expected value.
      default boolean waitLengthEquals​(int expected, int waitInSeconds)
      Wait for defined number of seconds until result of StringUtils.length(CharSequence) is equals to expected value.
      default boolean waitLengthEquals​(int expected, int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds until result of StringUtils.length(CharSequence) is equals to expected value.
      default boolean waitLengthNotEquals​(int expected)
      Wait for defined number of seconds until result of StringUtils.length(CharSequence) is NOT equals to expected value.
      default boolean waitLengthNotEquals​(int expected, int waitInSeconds)
      Wait for defined number of seconds until result of StringUtils.length(CharSequence) is NOT equals to expected value.
      default boolean waitLengthNotEquals​(int expected, int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds until result of StringUtils.length(CharSequence) is NOT equals to expected value.
      default boolean waitMidValueEquals​(int pos, int len, java.lang.String expected)
      Wait for defined number of seconds until result of StringUtils.mid(String, int, int) equals to expected value.
      default boolean waitMidValueEquals​(int pos, int len, java.lang.String expected, int waitInSeconds)
      Wait for defined number of seconds until result of StringUtils.mid(String, int, int) equals to expected value.
      default boolean waitMidValueEquals​(int pos, int len, java.lang.String expected, int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds until result of StringUtils.mid(String, int, int) equals to expected value.
      default boolean waitMidValueNotEquals​(int pos, int len, java.lang.String expected)
      Wait for defined number of seconds until result of StringUtils.mid(String, int, int) NOT equals to expected value.
      default boolean waitMidValueNotEquals​(int pos, int len, java.lang.String expected, int waitInSeconds)
      Wait for defined number of seconds until result of StringUtils.mid(String, int, int) NOT equals to expected value.
      default boolean waitMidValueNotEquals​(int pos, int len, java.lang.String expected, int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds until result of StringUtils.mid(String, int, int) NOT equals to expected value.
      default boolean waitNotContains​(java.lang.String expected)
      Wait for defined number of seconds until result of StringUtils.contains(CharSequence, CharSequence) is false.
      default boolean waitNotContains​(java.lang.String expected, int waitInSeconds)
      Wait for defined number of seconds until result of StringUtils.contains(CharSequence, CharSequence) is false.
      default boolean waitNotContains​(java.lang.String expected, int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds until result of StringUtils.contains(CharSequence, CharSequence) is false.
      default boolean waitNotContainsIgnoreCase​(java.lang.String expected)
      Wait for defined number of seconds until result of StringUtils.containsIgnoreCase(CharSequence, CharSequence) is false.
      default boolean waitNotContainsIgnoreCase​(java.lang.String expected, int waitInSeconds)
      Wait for defined number of seconds until result of StringUtils.containsIgnoreCase(CharSequence, CharSequence) is false.
      default boolean waitNotContainsIgnoreCase​(java.lang.String expected, int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds until result of StringUtils.containsIgnoreCase(CharSequence, CharSequence) is false.
      default boolean waitNotEndsWith​(java.lang.String suffix)
      Wait for defined number of seconds until result of StringUtils.endsWith(CharSequence, CharSequence) is false
      default boolean waitNotEndsWith​(java.lang.String suffix, int waitInSeconds)
      Wait for defined number of seconds until result of StringUtils.endsWith(CharSequence, CharSequence) is false
      default boolean waitNotEndsWith​(java.lang.String suffix, int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds until result of StringUtils.endsWith(CharSequence, CharSequence) is false
      default boolean waitNotEndsWithIgnoreCase​(java.lang.String suffix)
      Wait for defined number of seconds until result of StringUtils.endsWithIgnoreCase(CharSequence, CharSequence) is false.
      default boolean waitNotEndsWithIgnoreCase​(java.lang.String suffix, int waitInSeconds)
      Wait for defined number of seconds until result of StringUtils.endsWithIgnoreCase(CharSequence, CharSequence) is false.
      default boolean waitNotEndsWithIgnoreCase​(java.lang.String suffix, int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds until result of StringUtils.endsWithIgnoreCase(CharSequence, CharSequence) is false.
      default boolean waitNotEqualsIgnoreCase​(java.lang.String expected)
      Wait for defined number of seconds till if StringUtils.equalsIgnoreCase(CharSequence, CharSequence) value NOT equals the expected value.
      default boolean waitNotEqualsIgnoreCase​(java.lang.String expected, int waitInSeconds)
      Wait for defined number of seconds till if StringUtils.equalsIgnoreCase(CharSequence, CharSequence) value NOT equals the expected value.
      default boolean waitNotEqualsIgnoreCase​(java.lang.String expected, int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds till if StringUtils.equalsIgnoreCase(CharSequence, CharSequence) value NOT equals the expected value.
      default boolean waitNotEqualsIgnoreWhiteSpaces​(java.lang.String expected)
      Wait for defined number of seconds till if value is not equal to expected after removing all WhiteSpaces from both.
      default boolean waitNotEqualsIgnoreWhiteSpaces​(java.lang.String expected, int waitInSeconds)
      Wait for defined number of seconds till if value is not equal to expected after removing all WhiteSpaces from both.
      default boolean waitNotEqualsIgnoreWhiteSpaces​(java.lang.String expected, int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds till if value is not equal to expected after removing all WhiteSpaces from both.
      default boolean waitNotStartsWith​(java.lang.String expected)
      Wait for defined number of seconds until result of StringUtils.startsWith(CharSequence, CharSequence) is false
      default boolean waitNotStartsWith​(java.lang.String expected, int waitInSeconds)
      Wait for defined number of seconds until result of StringUtils.startsWith(CharSequence, CharSequence) is false
      default boolean waitNotStartsWith​(java.lang.String expected, int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds until result of StringUtils.startsWith(CharSequence, CharSequence) is false
      default boolean waitNotStartsWithIgnoreCase​(java.lang.String expected)
      Wait for defined number of seconds until result of StringUtils.startsWithIgnoreCase(CharSequence, CharSequence) is false
      default boolean waitNotStartsWithIgnoreCase​(java.lang.String expected, int waitInSeconds)
      Wait for defined number of seconds until result of StringUtils.startsWithIgnoreCase(CharSequence, CharSequence) is false
      default boolean waitNotStartsWithIgnoreCase​(java.lang.String expected, int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds until result of StringUtils.startsWithIgnoreCase(CharSequence, CharSequence) is false
      default boolean waitNumberOfMatchesEquals​(java.lang.String subString, int expected)
      Wait for defined number of seconds until result of StringUtils.countMatches(CharSequence, CharSequence) is equals to expected value.
      default boolean waitNumberOfMatchesEquals​(java.lang.String subString, int expected, int waitInSeconds)
      Wait for defined number of seconds until result of StringUtils.countMatches(CharSequence, CharSequence) is equals to expected value.
      default boolean waitNumberOfMatchesEquals​(java.lang.String subString, int expected, int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds until result of StringUtils.countMatches(CharSequence, CharSequence) is equals to expected value.
      default boolean waitNumberOfMatchesNotEquals​(java.lang.String subString, int expected)
      Wait for defined number of seconds until result of StringUtils.countMatches(CharSequence, CharSequence) is NOT equals to expected value.
      default boolean waitNumberOfMatchesNotEquals​(java.lang.String subString, int expected, int waitInSeconds)
      Wait for defined number of seconds until result of StringUtils.countMatches(CharSequence, CharSequence) is NOT equals to expected value.
      default boolean waitNumberOfMatchesNotEquals​(java.lang.String subString, int expected, int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds until result of StringUtils.countMatches(CharSequence, CharSequence) is NOT equals to expected value.
      default boolean waitRemoveEndEquals​(java.lang.String remove, java.lang.String expected)
      Wait for defined number of seconds until result of StringUtils.removeEnd(String, String) is equals to expected value.
      default boolean waitRemoveEndEquals​(java.lang.String remove, java.lang.String expected, int waitInSeconds)
      Wait for defined number of seconds until result of StringUtils.removeEnd(String, String) is equals to expected value.
      default boolean waitRemoveEndEquals​(java.lang.String remove, java.lang.String expected, int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds until result of StringUtils.removeEnd(String, String) is equals to expected value.
      default boolean waitRemoveEndIgnoreCaseEquals​(java.lang.String remove, java.lang.String expected)
      Wait for defined number of seconds until result of StringUtils.removeEndIgnoreCase(String, String) is equals to expected value.
      default boolean waitRemoveEndIgnoreCaseEquals​(java.lang.String remove, java.lang.String expected, int waitInSeconds)
      Wait for defined number of seconds until result of StringUtils.removeEndIgnoreCase(String, String) is equals to expected value.
      default boolean waitRemoveEndIgnoreCaseEquals​(java.lang.String remove, java.lang.String expected, int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds until result of StringUtils.removeEndIgnoreCase(String, String) is equals to expected value.
      default boolean waitRemoveEndIgnoreCaseNotEquals​(java.lang.String remove, java.lang.String expected)
      Wait for defined number of seconds until result of StringUtils.removeEndIgnoreCase(String, String) is NOT equals to expected value.
      default boolean waitRemoveEndIgnoreCaseNotEquals​(java.lang.String remove, java.lang.String expected, int waitInSeconds)
      Wait for defined number of seconds until result of StringUtils.removeEndIgnoreCase(String, String) is NOT equals to expected value.
      default boolean waitRemoveEndIgnoreCaseNotEquals​(java.lang.String remove, java.lang.String expected, int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds until result of StringUtils.removeEndIgnoreCase(String, String) is NOT equals to expected value.
      default boolean waitRemoveEndNotEquals​(java.lang.String remove, java.lang.String expected)
      Wait for defined number of seconds until result of StringUtils.removeEnd(String, String) is NOT equals to expected value.
      default boolean waitRemoveEndNotEquals​(java.lang.String remove, java.lang.String expected, int waitInSeconds)
      Wait for defined number of seconds until result of StringUtils.removeEnd(String, String) is NOT equals to expected value.
      default boolean waitRemoveEndNotEquals​(java.lang.String remove, java.lang.String expected, int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds until result of StringUtils.removeEnd(String, String) is NOT equals to expected value.
      default boolean waitRemoveEquals​(java.lang.String remove, java.lang.String expected)
      Wait for defined number of seconds until result of StringUtils.remove(String, String) is equals to expected value.
      default boolean waitRemoveEquals​(java.lang.String remove, java.lang.String expected, int waitInSeconds)
      Wait for defined number of seconds until result of StringUtils.remove(String, String) is equals to expected value.
      default boolean waitRemoveEquals​(java.lang.String remove, java.lang.String expected, int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds until result of StringUtils.remove(String, String) is equals to expected value.
      default boolean waitRemoveIgnoreCaseEquals​(java.lang.String remove, java.lang.String expected)
      Wait for defined number of seconds until result of StringUtils.removeIgnoreCase(String, String) is equals to expected value.
      default boolean waitRemoveIgnoreCaseEquals​(java.lang.String remove, java.lang.String expected, int waitInSeconds)
      Wait for defined number of seconds until result of StringUtils.removeIgnoreCase(String, String) is equals to expected value.
      default boolean waitRemoveIgnoreCaseEquals​(java.lang.String remove, java.lang.String expected, int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds until result of StringUtils.removeIgnoreCase(String, String) is equals to expected value.
      default boolean waitRemoveIgnoreCaseNotEquals​(java.lang.String remove, java.lang.String expected)
      Wait for defined number of seconds until result of StringUtils.removeIgnoreCase(String, String) is NOT equals to expected value.
      default boolean waitRemoveIgnoreCaseNotEquals​(java.lang.String remove, java.lang.String expected, int waitInSeconds)
      Wait for defined number of seconds until result of StringUtils.removeIgnoreCase(String, String) is NOT equals to expected value.
      default boolean waitRemoveIgnoreCaseNotEquals​(java.lang.String remove, java.lang.String expected, int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds until result of StringUtils.removeIgnoreCase(String, String) is NOT equals to expected value.
      default boolean waitRemoveNotEquals​(java.lang.String remove, java.lang.String expected)
      Wait for defined number of seconds until result of StringUtils.remove(String, String) is NOT equals to expected value.
      default boolean waitRemoveNotEquals​(java.lang.String remove, java.lang.String expected, int waitInSeconds)
      Wait for defined number of seconds until result of StringUtils.remove(String, String) is NOT equals to expected value.
      default boolean waitRemoveNotEquals​(java.lang.String remove, java.lang.String expected, int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds until result of StringUtils.remove(String, String) is NOT equals to expected value.
      default boolean waitRemoveStartEquals​(java.lang.String remove, java.lang.String expected)
      Wait for defined number of seconds until result of StringUtils.removeStart(String, String) is equals to expected value.
      default boolean waitRemoveStartEquals​(java.lang.String remove, java.lang.String expected, int waitInSeconds)
      Wait for defined number of seconds until result of StringUtils.removeStart(String, String) is equals to expected value.
      default boolean waitRemoveStartEquals​(java.lang.String remove, java.lang.String expected, int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds until result of StringUtils.removeStart(String, String) is equals to expected value.
      default boolean waitRemoveStartIgnoreCaseEquals​(java.lang.String remove, java.lang.String expected)
      Wait for defined number of seconds until result of StringUtils.removeStartIgnoreCase(String, String) is equals to expected value.
      default boolean waitRemoveStartIgnoreCaseEquals​(java.lang.String remove, java.lang.String expected, int waitInSeconds)
      Wait for defined number of seconds until result of StringUtils.removeStartIgnoreCase(String, String) is equals to expected value.
      default boolean waitRemoveStartIgnoreCaseEquals​(java.lang.String remove, java.lang.String expected, int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds until result of StringUtils.removeStartIgnoreCase(String, String) is equals to expected value.
      default boolean waitRemoveStartIgnoreCaseNotEquals​(java.lang.String remove, java.lang.String expected)
      Wait for defined number of seconds until result of StringUtils.removeStartIgnoreCase(String, String) is NOT equals to expected value.
      default boolean waitRemoveStartIgnoreCaseNotEquals​(java.lang.String remove, java.lang.String expected, int waitInSeconds)
      Wait for defined number of seconds until result of StringUtils.removeStartIgnoreCase(String, String) is NOT equals to expected value.
      default boolean waitRemoveStartIgnoreCaseNotEquals​(java.lang.String remove, java.lang.String expected, int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds until result of StringUtils.removeStartIgnoreCase(String, String) is NOT equals to expected value.
      default boolean waitRemoveStartNotEquals​(java.lang.String remove, java.lang.String expected)
      Wait for defined number of seconds until result of StringUtils.removeStart(String, String) is NOT equals to expected value.
      default boolean waitRemoveStartNotEquals​(java.lang.String remove, java.lang.String expected, int waitInSeconds)
      Wait for defined number of seconds until result of StringUtils.removeStart(String, String) is NOT equals to expected value.
      default boolean waitRemoveStartNotEquals​(java.lang.String remove, java.lang.String expected, int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds until result of StringUtils.removeStart(String, String) is NOT equals to expected value.
      default boolean waitReplaceEquals​(java.lang.String searchString, java.lang.String replacement, java.lang.String expected)
      Wait for defined number of seconds until result of StringUtils.replace(String, String, String) is equals to expected value.
      default boolean waitReplaceEquals​(java.lang.String searchString, java.lang.String replacement, java.lang.String expected, int waitInSeconds)
      Wait for defined number of seconds until result of StringUtils.replace(String, String, String) is equals to expected value.
      default boolean waitReplaceEquals​(java.lang.String searchString, java.lang.String replacement, java.lang.String expected, int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds until result of StringUtils.replace(String, String, String) is equals to expected value.
      default boolean waitReplaceIgnoreCaseEquals​(java.lang.String searchString, java.lang.String replacement, java.lang.String expected)
      Wait for defined number of seconds until result of StringUtils.replaceIgnoreCase(String, String, String) is equals to expected value.
      default boolean waitReplaceIgnoreCaseEquals​(java.lang.String searchString, java.lang.String replacement, java.lang.String expected, int waitInSeconds)
      Wait for defined number of seconds until result of StringUtils.replaceIgnoreCase(String, String, String) is equals to expected value.
      default boolean waitReplaceIgnoreCaseEquals​(java.lang.String searchString, java.lang.String replacement, java.lang.String expected, int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds until result of StringUtils.replaceIgnoreCase(String, String, String) is equals to expected value.
      default boolean waitReplaceIgnoreCaseNotEquals​(java.lang.String searchString, java.lang.String replacement, java.lang.String expected)
      Wait for defined number of seconds until result of StringUtils.replaceIgnoreCase(String, String, String) is NOT equals to expected value.
      default boolean waitReplaceIgnoreCaseNotEquals​(java.lang.String searchString, java.lang.String replacement, java.lang.String expected, int waitInSeconds)
      Wait for defined number of seconds until result of StringUtils.replaceIgnoreCase(String, String, String) is NOT equals to expected value.
      default boolean waitReplaceIgnoreCaseNotEquals​(java.lang.String searchString, java.lang.String replacement, java.lang.String expected, int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds until result of StringUtils.replaceIgnoreCase(String, String, String) is NOT equals to expected value.
      default boolean waitReplaceNotEquals​(java.lang.String searchString, java.lang.String replacement, java.lang.String expected)
      Wait for defined number of seconds until result of StringUtils.replace(String, String, String) is NOT equals to expected value.
      default boolean waitReplaceNotEquals​(java.lang.String searchString, java.lang.String replacement, java.lang.String expected, int waitInSeconds)
      Wait for defined number of seconds until result of StringUtils.replace(String, String, String) is NOT equals to expected value.
      default boolean waitReplaceNotEquals​(java.lang.String searchString, java.lang.String replacement, java.lang.String expected, int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds until result of StringUtils.replace(String, String, String) is NOT equals to expected value.
      default boolean waitReplaceOnceEquals​(java.lang.String searchString, java.lang.String replacement, java.lang.String expected)
      Wait for defined number of seconds until result of StringUtils.replaceOnce(String, String, String) is equals to expected value.
      default boolean waitReplaceOnceEquals​(java.lang.String searchString, java.lang.String replacement, java.lang.String expected, int waitInSeconds)
      Wait for defined number of seconds until result of StringUtils.replaceOnce(String, String, String) is equals to expected value.
      default boolean waitReplaceOnceEquals​(java.lang.String searchString, java.lang.String replacement, java.lang.String expected, int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds until result of StringUtils.replaceOnce(String, String, String) is equals to expected value.
      default boolean waitReplaceOnceIgnoreCaseEquals​(java.lang.String searchString, java.lang.String replacement, java.lang.String expected)
      Wait for defined number of seconds until result of StringUtils.replaceOnceIgnoreCase(String, String, String) is equals to expected value.
      default boolean waitReplaceOnceIgnoreCaseEquals​(java.lang.String searchString, java.lang.String replacement, java.lang.String expected, int waitInSeconds)
      Wait for defined number of seconds until result of StringUtils.replaceOnceIgnoreCase(String, String, String) is equals to expected value.
      default boolean waitReplaceOnceIgnoreCaseEquals​(java.lang.String searchString, java.lang.String replacement, java.lang.String expected, int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds until result of StringUtils.replaceOnceIgnoreCase(String, String, String) is equals to expected value.
      default boolean waitReplaceOnceIgnoreCaseNotEquals​(java.lang.String searchString, java.lang.String replacement, java.lang.String expected)
      Wait for defined number of seconds until result of StringUtils.replaceOnceIgnoreCase(String, String, String) is NOT equals to expected value.
      default boolean waitReplaceOnceIgnoreCaseNotEquals​(java.lang.String searchString, java.lang.String replacement, java.lang.String expected, int waitInSeconds)
      Wait for defined number of seconds until result of StringUtils.replaceOnceIgnoreCase(String, String, String) is NOT equals to expected value.
      default boolean waitReplaceOnceIgnoreCaseNotEquals​(java.lang.String searchString, java.lang.String replacement, java.lang.String expected, int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds until result of StringUtils.replaceOnceIgnoreCase(String, String, String) is NOT equals to expected value.
      default boolean waitReplaceOnceNotEquals​(java.lang.String searchString, java.lang.String replacement, java.lang.String expected)
      Wait for defined number of seconds until result of StringUtils.replaceOnce(String, String, String) is NOT equals to expected value.
      default boolean waitReplaceOnceNotEquals​(java.lang.String searchString, java.lang.String replacement, java.lang.String expected, int waitInSeconds)
      Wait for defined number of seconds until result of StringUtils.replaceOnce(String, String, String) is NOT equals to expected value.
      default boolean waitReplaceOnceNotEquals​(java.lang.String searchString, java.lang.String replacement, java.lang.String expected, int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds until result of StringUtils.replaceOnce(String, String, String) is NOT equals to expected value.
      default boolean waitReverseEquals​(java.lang.String expected)
      Wait for defined number of seconds until result of StringUtils.reverse(String) is equals to expected value.
      default boolean waitReverseEquals​(java.lang.String expected, int waitInSeconds)
      Wait for defined number of seconds until result of StringUtils.reverse(String) is equals to expected value.
      default boolean waitReverseEquals​(java.lang.String expected, int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds until result of StringUtils.reverse(String) is equals to expected value.
      default boolean waitReverseNotEquals​(java.lang.String expected)
      Wait for defined number of seconds until result of StringUtils.reverse(String) is NOT equals to expected value.
      default boolean waitReverseNotEquals​(java.lang.String expected, int waitInSeconds)
      Wait for defined number of seconds until result of StringUtils.reverse(String) is NOT equals to expected value.
      default boolean waitReverseNotEquals​(java.lang.String expected, int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds until result of StringUtils.reverse(String) is NOT equals to expected value.
      default boolean waitRightPadEquals​(int size, java.lang.String padStr, java.lang.String expected)
      Wait for defined number of seconds until result of StringUtils.rightPad(String, int, String) is equals to expected value.
      default boolean waitRightPadEquals​(int size, java.lang.String padStr, java.lang.String expected, int waitInSeconds)
      Wait for defined number of seconds until result of StringUtils.rightPad(String, int, String) is equals to expected value.
      default boolean waitRightPadEquals​(int size, java.lang.String padStr, java.lang.String expected, int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds until result of StringUtils.rightPad(String, int, String) is equals to expected value.
      default boolean waitRightPadNotEquals​(int size, java.lang.String padStr, java.lang.String expected)
      Wait for defined number of seconds until result of StringUtils.rightPad(String, int, String) is NOT equals to expected value.
      default boolean waitRightPadNotEquals​(int size, java.lang.String padStr, java.lang.String expected, int waitInSeconds)
      Wait for defined number of seconds until result of StringUtils.rightPad(String, int, String) is NOT equals to expected value.
      default boolean waitRightPadNotEquals​(int size, java.lang.String padStr, java.lang.String expected, int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds until result of StringUtils.rightPad(String, int, String) is NOT equals to expected value.
      default boolean waitRightValueEquals​(int len, java.lang.String expected)
      Wait for defined number of seconds until result of StringUtils.right(String, int) equals to expected value.
      default boolean waitRightValueEquals​(int len, java.lang.String expected, int waitInSeconds)
      Wait for defined number of seconds until result of StringUtils.right(String, int) equals to expected value.
      default boolean waitRightValueEquals​(int len, java.lang.String expected, int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds until result of StringUtils.right(String, int) equals to expected value.
      default boolean waitRightValueNotEquals​(int len, java.lang.String expected)
      Wait for defined number of seconds until result of StringUtils.right(String, int) NOT equals to expected value.
      default boolean waitRightValueNotEquals​(int len, java.lang.String expected, int waitInSeconds)
      Wait for defined number of seconds until result of StringUtils.right(String, int) NOT equals to expected value.
      default boolean waitRightValueNotEquals​(int len, java.lang.String expected, int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds until result of StringUtils.right(String, int) NOT equals to expected value.
      default boolean waitStartsWith​(java.lang.String expected)
      Wait for defined number of seconds until result of StringUtils.startsWith(CharSequence, CharSequence) is true
      default boolean waitStartsWith​(java.lang.String expected, int waitInSeconds)
      Wait for defined number of seconds until result of StringUtils.startsWith(CharSequence, CharSequence) is true
      default boolean waitStartsWith​(java.lang.String expected, int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds until result of StringUtils.startsWith(CharSequence, CharSequence) is true
      default boolean waitStartsWithAny​(java.util.List<java.lang.String> searchInputs)
      Wait for defined number of seconds until result of StringUtils.startsWithAny(CharSequence, CharSequence...) is true
      default boolean waitStartsWithAny​(java.util.List<java.lang.String> searchInputs, int waitInSeconds)
      Wait for defined number of seconds until result of StringUtils.startsWithAny(CharSequence, CharSequence...) is true
      default boolean waitStartsWithAny​(java.util.List<java.lang.String> searchInputs, int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds until result of StringUtils.startsWithAny(CharSequence, CharSequence...) is true
      default boolean waitStartsWithIgnoreCase​(java.lang.String expected)
      Wait for defined number of seconds until result of StringUtils.startsWithIgnoreCase(CharSequence, CharSequence) is true
      default boolean waitStartsWithIgnoreCase​(java.lang.String expected, int waitInSeconds)
      Wait for defined number of seconds until result of StringUtils.startsWithIgnoreCase(CharSequence, CharSequence) is true
      default boolean waitStartsWithIgnoreCase​(java.lang.String expected, int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds until result of StringUtils.startsWithIgnoreCase(CharSequence, CharSequence) is true
      default boolean waitStartsWithNone​(java.util.List<java.lang.String> searchInputs)
      Wait for defined number of seconds until result of StringUtils.startsWithAny(CharSequence, CharSequence...) is false
      default boolean waitStartsWithNone​(java.util.List<java.lang.String> searchInputs, int waitInSeconds)
      Wait for defined number of seconds until result of StringUtils.startsWithAny(CharSequence, CharSequence...) is false
      default boolean waitStartsWithNone​(java.util.List<java.lang.String> searchInputs, int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds until result of StringUtils.startsWithAny(CharSequence, CharSequence...) is false
      default boolean waitStripedEndValue​(java.lang.String stripChars, java.lang.String expected)
      Wait for defined number of seconds till if StringUtils.stripEnd(String, String) value equals the expected value.
      default boolean waitStripedEndValue​(java.lang.String stripChars, java.lang.String expected, int waitInSeconds)
      Wait for defined number of seconds till if StringUtils.stripEnd(String, String) value equals the expected value.
      default boolean waitStripedEndValue​(java.lang.String stripChars, java.lang.String expected, int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds till if StringUtils.stripEnd(String, String) value equals the expected value.
      default boolean waitStripedEndValueNot​(java.lang.String stripChars, java.lang.String expected)
      Wait for defined number of seconds till if StringUtils.stripEnd(String, String) value NOT equals the expected value.
      default boolean waitStripedEndValueNot​(java.lang.String stripChars, java.lang.String expected, int waitInSeconds)
      Wait for defined number of seconds till if StringUtils.stripEnd(String, String) value NOT equals the expected value.
      default boolean waitStripedEndValueNot​(java.lang.String stripChars, java.lang.String expected, int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds till if StringUtils.stripEnd(String, String) value NOT equals the expected value.
      default boolean waitStripedStartValue​(java.lang.String stripChars, java.lang.String expected)
      Wait for defined number of seconds till if StringUtils.stripStart(String, String) value equals the expected value.
      default boolean waitStripedStartValue​(java.lang.String stripChars, java.lang.String expected, int waitInSeconds)
      Wait for defined number of seconds till if StringUtils.stripStart(String, String) value equals the expected value.
      default boolean waitStripedStartValue​(java.lang.String stripChars, java.lang.String expected, int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds till if StringUtils.stripStart(String, String) value equals the expected value.
      default boolean waitStripedStartValueNot​(java.lang.String stripChars, java.lang.String expected)
      Wait for defined number of seconds till if StringUtils.stripStart(String, String) value NOT equals the expected value.
      default boolean waitStripedStartValueNot​(java.lang.String stripChars, java.lang.String expected, int waitInSeconds)
      Wait for defined number of seconds till if StringUtils.stripStart(String, String) value NOT equals the expected value.
      default boolean waitStripedStartValueNot​(java.lang.String stripChars, java.lang.String expected, int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds till if StringUtils.stripStart(String, String) value NOT equals the expected value.
      default boolean waitStripedValue​(java.lang.String stripChars, java.lang.String expected)
      Wait for defined number of seconds till if StringUtils.strip(String) value equals the expected value.
      default boolean waitStripedValue​(java.lang.String stripChars, java.lang.String expected, int waitInSeconds)
      Wait for defined number of seconds till if StringUtils.strip(String) value equals the expected value.
      default boolean waitStripedValue​(java.lang.String stripChars, java.lang.String expected, int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds till if StringUtils.strip(String) value equals the expected value.
      default boolean waitStripedValueNot​(java.lang.String stripChars, java.lang.String expected)
      Wait for defined number of seconds till if StringUtils.strip(String) value NOT equals the expected value.
      default boolean waitStripedValueNot​(java.lang.String stripChars, java.lang.String expected, int waitInSeconds)
      Wait for defined number of seconds till if StringUtils.strip(String) value NOT equals the expected value.
      default boolean waitStripedValueNot​(java.lang.String stripChars, java.lang.String expected, int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds till if StringUtils.strip(String) value NOT equals the expected value.
      default boolean waitSubstringAfterEquals​(java.lang.String separator, java.lang.String expected)
      Wait for defined number of seconds until result of StringUtils.substringAfter(String, String) equals to expected value.
      default boolean waitSubstringAfterEquals​(java.lang.String separator, java.lang.String expected, int waitInSeconds)
      Wait for defined number of seconds until result of StringUtils.substringAfter(String, String) equals to expected value.
      default boolean waitSubstringAfterEquals​(java.lang.String separator, java.lang.String expected, int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds until result of StringUtils.substringAfter(String, String) equals to expected value.
      default boolean waitSubstringAfterLastEquals​(java.lang.String separator, java.lang.String expected)
      Wait for defined number of seconds until result of StringUtils.substringAfterLast(String, String) equals to expected value.
      default boolean waitSubstringAfterLastEquals​(java.lang.String separator, java.lang.String expected, int waitInSeconds)
      Wait for defined number of seconds until result of StringUtils.substringAfterLast(String, String) equals to expected value.
      default boolean waitSubstringAfterLastEquals​(java.lang.String separator, java.lang.String expected, int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds until result of StringUtils.substringAfterLast(String, String) equals to expected value.
      default boolean waitSubstringAfterLastNotEquals​(java.lang.String separator, java.lang.String expected)
      Wait for defined number of seconds until result of StringUtils.substringAfterLast(String, String) NOT equals to expected value.
      default boolean waitSubstringAfterLastNotEquals​(java.lang.String separator, java.lang.String expected, int waitInSeconds)
      Wait for defined number of seconds until result of StringUtils.substringAfterLast(String, String) NOT equals to expected value.
      default boolean waitSubstringAfterLastNotEquals​(java.lang.String separator, java.lang.String expected, int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds until result of StringUtils.substringAfterLast(String, String) NOT equals to expected value.
      default boolean waitSubstringAfterNotEquals​(java.lang.String separator, java.lang.String expected)
      Wait for defined number of seconds until result of StringUtils.substringAfter(String, String) NOT equals to expected value.
      default boolean waitSubstringAfterNotEquals​(java.lang.String separator, java.lang.String expected, int waitInSeconds)
      Wait for defined number of seconds until result of StringUtils.substringAfter(String, String) NOT equals to expected value.
      default boolean waitSubstringAfterNotEquals​(java.lang.String separator, java.lang.String expected, int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds until result of StringUtils.substringAfter(String, String) NOT equals to expected value.
      default boolean waitSubstringBeforeEquals​(java.lang.String separator, java.lang.String expected)
      Wait for defined number of seconds until result of StringUtils.substringBefore(String, String) equals to expected value.
      default boolean waitSubstringBeforeEquals​(java.lang.String separator, java.lang.String expected, int waitInSeconds)
      Wait for defined number of seconds until result of StringUtils.substringBefore(String, String) equals to expected value.
      default boolean waitSubstringBeforeEquals​(java.lang.String separator, java.lang.String expected, int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds until result of StringUtils.substringBefore(String, String) equals to expected value.
      default boolean waitSubstringBeforeLastEquals​(java.lang.String separator, java.lang.String expected)
      Wait for defined number of seconds until result of StringUtils.substringBeforeLast(String, String) equals to expected value.
      default boolean waitSubstringBeforeLastEquals​(java.lang.String separator, java.lang.String expected, int waitInSeconds)
      Wait for defined number of seconds until result of StringUtils.substringBeforeLast(String, String) equals to expected value.
      default boolean waitSubstringBeforeLastEquals​(java.lang.String separator, java.lang.String expected, int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds until result of StringUtils.substringBeforeLast(String, String) equals to expected value.
      default boolean waitSubstringBeforeLastNotEquals​(java.lang.String separator, java.lang.String expected)
      Wait for defined number of seconds until result of StringUtils.substringBeforeLast(String, String) NOT equals to expected value.
      default boolean waitSubstringBeforeLastNotEquals​(java.lang.String separator, java.lang.String expected, int waitInSeconds)
      Wait for defined number of seconds until result of StringUtils.substringBeforeLast(String, String) NOT equals to expected value.
      default boolean waitSubstringBeforeLastNotEquals​(java.lang.String separator, java.lang.String expected, int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds until result of StringUtils.substringBeforeLast(String, String) NOT equals to expected value.
      default boolean waitSubstringBeforeNotEquals​(java.lang.String separator, java.lang.String expected)
      Wait for defined number of seconds until result of StringUtils.substringBefore(String, String) NOT equals to expected value.
      default boolean waitSubstringBeforeNotEquals​(java.lang.String separator, java.lang.String expected, int waitInSeconds)
      Wait for defined number of seconds until result of StringUtils.substringBefore(String, String) NOT equals to expected value.
      default boolean waitSubstringBeforeNotEquals​(java.lang.String separator, java.lang.String expected, int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds until result of StringUtils.substringBefore(String, String) NOT equals to expected value.
      default boolean waitSubstringBetweenEquals​(java.lang.String open, java.lang.String close, java.lang.String expected)
      Wait for defined number of seconds until result of StringUtils.substringBetween(String, String) equals to expected value.
      default boolean waitSubstringBetweenEquals​(java.lang.String open, java.lang.String close, java.lang.String expected, int waitInSeconds)
      Wait for defined number of seconds until result of StringUtils.substringBetween(String, String) equals to expected value.
      default boolean waitSubstringBetweenEquals​(java.lang.String open, java.lang.String close, java.lang.String expected, int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds until result of StringUtils.substringBetween(String, String) equals to expected value.
      default boolean waitSubstringBetweenNotEquals​(java.lang.String open, java.lang.String close, java.lang.String expected)
      Wait for defined number of seconds until result of StringUtils.substringBetween(String, String) NOT equals to expected value.
      default boolean waitSubstringBetweenNotEquals​(java.lang.String open, java.lang.String close, java.lang.String expected, int waitInSeconds)
      Wait for defined number of seconds until result of StringUtils.substringBetween(String, String) NOT equals to expected value.
      default boolean waitSubstringBetweenNotEquals​(java.lang.String open, java.lang.String close, java.lang.String expected, int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds until result of StringUtils.substringBetween(String, String) NOT equals to expected value.
      default boolean waitSubstringEquals​(int start, int end, java.lang.String expected)
      Wait for defined number of seconds until result of StringUtils.substring(String, int, int) equals to expected value.
      default boolean waitSubstringEquals​(int start, int end, java.lang.String expected, int waitInSeconds)
      Wait for defined number of seconds until result of StringUtils.substring(String, int, int) equals to expected value.
      default boolean waitSubstringEquals​(int start, int end, java.lang.String expected, int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds until result of StringUtils.substring(String, int, int) equals to expected value.
      default boolean waitSubstringEquals​(int start, java.lang.String expected)
      Wait for defined number of seconds until result of StringUtils.substring(String, int) equals to expected value.
      default boolean waitSubstringEquals​(int start, java.lang.String expected, int waitInSeconds)
      Wait for defined number of seconds until result of StringUtils.substring(String, int) equals to expected value.
      default boolean waitSubstringEquals​(int start, java.lang.String expected, int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds until result of StringUtils.substring(String, int) equals to expected value.
      default boolean waitSubstringNotEquals​(int start, int end, java.lang.String expected)
      Wait for defined number of seconds until result of StringUtils.substring(String, int, int) NOT equals to expected value.
      default boolean waitSubstringNotEquals​(int start, int end, java.lang.String expected, int waitInSeconds)
      Wait for defined number of seconds until result of StringUtils.substring(String, int, int) NOT equals to expected value.
      default boolean waitSubstringNotEquals​(int start, int end, java.lang.String expected, int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds until result of StringUtils.substring(String, int, int) NOT equals to expected value.
      default boolean waitSubstringNotEquals​(int start, java.lang.String expected)
      Wait for defined number of seconds until result of StringUtils.substring(String, int) NOT equals to expected value.
      default boolean waitSubstringNotEquals​(int start, java.lang.String expected, int waitInSeconds)
      Wait for defined number of seconds until result of StringUtils.substring(String, int) NOT equals to expected value.
      default boolean waitSubstringNotEquals​(int start, java.lang.String expected, int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds until result of StringUtils.substring(String, int) NOT equals to expected value.
      default boolean waitSubstringsBetweenContains​(java.lang.String open, java.lang.String close, java.lang.String expected)
      Wait for defined number of seconds until result of StringUtils.substringsBetween(String, String, String) contains to expected value.
      default boolean waitSubstringsBetweenContains​(java.lang.String open, java.lang.String close, java.lang.String expected, int waitInSeconds)
      Wait for defined number of seconds until result of StringUtils.substringsBetween(String, String, String) contains to expected value.
      default boolean waitSubstringsBetweenContains​(java.lang.String open, java.lang.String close, java.lang.String expected, int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds until result of StringUtils.substringsBetween(String, String, String) contains to expected value.
      default boolean waitSubstringsBetweenEquals​(java.lang.String open, java.lang.String close, java.util.List<java.lang.String> expected)
      Wait for defined number of seconds until result of StringUtils.substringsBetween(String, String, String) equals to expected value.
      default boolean waitSubstringsBetweenEquals​(java.lang.String open, java.lang.String close, java.util.List<java.lang.String> expected, int waitInSeconds)
      Wait for defined number of seconds until result of StringUtils.substringsBetween(String, String, String) equals to expected value.
      default boolean waitSubstringsBetweenEquals​(java.lang.String open, java.lang.String close, java.util.List<java.lang.String> expected, int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds until result of StringUtils.substringsBetween(String, String, String) equals to expected value.
      default boolean waitSubstringsBetweenNotContains​(java.lang.String open, java.lang.String close, java.lang.String expected)
      Wait for defined number of seconds until result of StringUtils.substringsBetween(String, String, String) NOT contains to expected value.
      default boolean waitSubstringsBetweenNotContains​(java.lang.String open, java.lang.String close, java.lang.String expected, int waitInSeconds)
      Wait for defined number of seconds until result of StringUtils.substringsBetween(String, String, String) NOT contains to expected value.
      default boolean waitSubstringsBetweenNotContains​(java.lang.String open, java.lang.String close, java.lang.String expected, int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds until result of StringUtils.substringsBetween(String, String, String) NOT contains to expected value.
      default boolean waitSubstringsBetweenNotEquals​(java.lang.String open, java.lang.String close, java.util.List<java.lang.String> expected)
      Wait for defined number of seconds until result of StringUtils.substringsBetween(String, String, String) NOT equals to expected value.
      default boolean waitSubstringsBetweenNotEquals​(java.lang.String open, java.lang.String close, java.util.List<java.lang.String> expected, int waitInSeconds)
      Wait for defined number of seconds until result of StringUtils.substringsBetween(String, String, String) NOT equals to expected value.
      default boolean waitSubstringsBetweenNotEquals​(java.lang.String open, java.lang.String close, java.util.List<java.lang.String> expected, int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds until result of StringUtils.substringsBetween(String, String, String) NOT equals to expected value.
      default boolean waitTrimmedValueEquals​(java.lang.String expected)
      Wait for defined number of seconds till if StringUtils.trim(String) value equals the expected value.
      default boolean waitTrimmedValueEquals​(java.lang.String expected, int waitInSeconds)
      Wait for defined number of seconds till if StringUtils.trim(String) value equals the expected value.
      default boolean waitTrimmedValueEquals​(java.lang.String expected, int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds till if StringUtils.trim(String) value equals the expected value.
      default boolean waitTrimmedValueNotEquals​(java.lang.String expected)
      Wait for defined number of seconds till if StringUtils.trim(String) value NOT equals the expected value.
      default boolean waitTrimmedValueNotEquals​(java.lang.String expected, int waitInSeconds)
      Wait for defined number of seconds till if StringUtils.trim(String) value NOT equals the expected value.
      default boolean waitTrimmedValueNotEquals​(java.lang.String expected, int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds till if StringUtils.trim(String) value NOT equals the expected value.
      default boolean waitTruncatedValueEquals​(int offset, int maxWidth, java.lang.String expected)
      Wait for defined number of seconds till if StringUtils.truncate(String, int, int) value equals the expected value.
      default boolean waitTruncatedValueEquals​(int offset, int maxWidth, java.lang.String expected, int waitInSeconds)
      Wait for defined number of seconds till if StringUtils.truncate(String, int, int) value equals the expected value.
      default boolean waitTruncatedValueEquals​(int offset, int maxWidth, java.lang.String expected, int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds till if StringUtils.truncate(String, int, int) value equals the expected value.
      default boolean waitTruncatedValueEquals​(int maxWidth, java.lang.String expected)
      Wait for defined number of seconds till if StringUtils.truncate(String, int) value equals the expected value.
      default boolean waitTruncatedValueEquals​(int maxWidth, java.lang.String expected, int waitInSeconds)
      Wait for defined number of seconds till if StringUtils.truncate(String, int) value equals the expected value.
      default boolean waitTruncatedValueEquals​(int maxWidth, java.lang.String expected, int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds till if StringUtils.truncate(String, int) value equals the expected value.
      default boolean waitTruncatedValueNotEquals​(int offset, int maxWidth, java.lang.String expected)
      Wait for defined number of seconds till if StringUtils.truncate(String, int, int) value NOT equals the expected value.
      default boolean waitTruncatedValueNotEquals​(int offset, int maxWidth, java.lang.String expected, int waitInSeconds)
      Wait for defined number of seconds till if StringUtils.truncate(String, int, int) value NOT equals the expected value.
      default boolean waitTruncatedValueNotEquals​(int offset, int maxWidth, java.lang.String expected, int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds till if StringUtils.truncate(String, int, int) value NOT equals the expected value.
      default boolean waitTruncatedValueNotEquals​(int maxWidth, java.lang.String expected)
      Wait for defined number of seconds till if StringUtils.truncate(String, int) value equals the expected value.
      default boolean waitTruncatedValueNotEquals​(int maxWidth, java.lang.String expected, int waitInSeconds)
      Wait for defined number of seconds till if StringUtils.truncate(String, int) value equals the expected value.
      default boolean waitTruncatedValueNotEquals​(int maxWidth, java.lang.String expected, int waitInSeconds, int intervalInMilliSeconds)
      Wait for defined number of seconds till if StringUtils.truncate(String, int) value equals the expected value.
      • Methods inherited from interface org.catools.common.extensions.states.interfaces.CBaseState

        getValue
    • Method Detail

      • waitCenterPadEquals

        default boolean waitCenterPadEquals​(int size,
                                            java.lang.String padStr,
                                            java.lang.String expected)

        Wait for CConfigs.TypeExtension.getDefaultWaitInSeconds() number of milliseconds until result of StringUtils.center(String, int, String) is equals to expected value.

        Parameters:
        size - the int size of new String, negative treated as zero
        padStr - the String to pad the new String with, must not be null or empty
        expected - the expected result.
        Returns:
        true if wait operation succeed otherwise return false
      • waitCenterPadEquals

        default boolean waitCenterPadEquals​(int size,
                                            java.lang.String padStr,
                                            java.lang.String expected,
                                            int waitInSeconds)

        Wait for defined number of seconds until result of StringUtils.center(String, int, String) is equals to expected value.

        Parameters:
        size - the int size of new String, negative treated as zero
        padStr - the String to pad the new String with, must not be null or empty
        expected - the expected result.
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitCenterPadEquals

        default boolean waitCenterPadEquals​(int size,
                                            java.lang.String padStr,
                                            java.lang.String expected,
                                            int waitInSeconds,
                                            int intervalInMilliSeconds)

        Wait for defined number of seconds until result of StringUtils.center(String, int, String) is equals to expected value.

        Parameters:
        size - the int size of new String, negative treated as zero
        padStr - the String to pad the new String with, must not be null or empty
        expected - the expected result.
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitCenterPadNotEquals

        default boolean waitCenterPadNotEquals​(int size,
                                               java.lang.String padStr,
                                               java.lang.String expected)

        Wait for CConfigs.TypeExtension.getDefaultWaitInSeconds() number of milliseconds until result of StringUtils.center(String, int, String) is NOT equals to expected value.

        Parameters:
        size - the int size of new String, negative treated as zero
        padStr - the String to pad the new String with, must not be null or empty
        expected - the expected result.
        Returns:
        true if wait operation succeed otherwise return false
      • waitCenterPadNotEquals

        default boolean waitCenterPadNotEquals​(int size,
                                               java.lang.String padStr,
                                               java.lang.String expected,
                                               int waitInSeconds)

        Wait for defined number of seconds until result of StringUtils.center(String, int, String) is NOT equals to expected value.

        Parameters:
        size - the int size of new String, negative treated as zero
        padStr - the String to pad the new String with, must not be null or empty
        expected - the expected result.
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitCenterPadNotEquals

        default boolean waitCenterPadNotEquals​(int size,
                                               java.lang.String padStr,
                                               java.lang.String expected,
                                               int waitInSeconds,
                                               int intervalInMilliSeconds)

        Wait for defined number of seconds until result of StringUtils.center(String, int, String) is NOT equals to expected value.

        Parameters:
        size - the int size of new String, negative treated as zero
        padStr - the String to pad the new String with, must not be null or empty
        expected - the expected result.
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitCompare

        default boolean waitCompare​(java.lang.String stringToCompare,
                                    int expected)

        Wait for CConfigs.TypeExtension.getDefaultWaitInSeconds() number of milliseconds until result of StringUtils.compare(String, String) equals to the expected value.

        Parameters:
        stringToCompare - the string value to compare against
        expected - the expected result.
        Returns:
        true if wait operation succeed otherwise return false
      • waitCompare

        default boolean waitCompare​(java.lang.String stringToCompare,
                                    int expected,
                                    int waitInSeconds)

        Wait for defined number of seconds until result of StringUtils.compare(String, String) equals to the expected value.

        Parameters:
        stringToCompare - the string value to compare against
        expected - the expected result.
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitCompare

        default boolean waitCompare​(java.lang.String stringToCompare,
                                    int expected,
                                    int waitInSeconds,
                                    int intervalInMilliSeconds)

        Wait for defined number of seconds until result of StringUtils.compare(String, String) equals to the expected value.

        Parameters:
        stringToCompare - the string value to compare against
        expected - the expected result.
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitCompareIgnoreCase

        default boolean waitCompareIgnoreCase​(java.lang.String stringToCompare,
                                              int expected)

        Wait for CConfigs.TypeExtension.getDefaultWaitInSeconds() number of milliseconds until result of StringUtils.compareIgnoreCase(String, String) equals to the expected value.

        Parameters:
        stringToCompare - the string value to compare against
        expected - the expected result.
        Returns:
        true if wait operation succeed otherwise return false
      • waitCompareIgnoreCase

        default boolean waitCompareIgnoreCase​(java.lang.String stringToCompare,
                                              int expected,
                                              int waitInSeconds)

        Wait for defined number of seconds until result of StringUtils.compareIgnoreCase(String, String) equals to the expected value.

        Parameters:
        stringToCompare - the string value to compare against
        expected - the expected result.
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitCompareIgnoreCase

        default boolean waitCompareIgnoreCase​(java.lang.String stringToCompare,
                                              int expected,
                                              int waitInSeconds,
                                              int intervalInMilliSeconds)

        Wait for defined number of seconds until result of StringUtils.compareIgnoreCase(String, String) equals to the expected value.

        Parameters:
        stringToCompare - the string value to compare against
        expected - the expected result.
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitContains

        default boolean waitContains​(java.lang.String expected)

        Wait for CConfigs.TypeExtension.getDefaultWaitInSeconds() number of milliseconds until result of StringUtils.contains(CharSequence, CharSequence) is true.

        Parameters:
        expected - the expected result.
        Returns:
        true if wait operation succeed otherwise return false
      • waitContains

        default boolean waitContains​(java.lang.String expected,
                                     int waitInSeconds)

        Wait for defined number of seconds until result of StringUtils.contains(CharSequence, CharSequence) is true.

        Parameters:
        expected - the expected result.
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitContains

        default boolean waitContains​(java.lang.String expected,
                                     int waitInSeconds,
                                     int intervalInMilliSeconds)

        Wait for defined number of seconds until result of StringUtils.contains(CharSequence, CharSequence) is true.

        Parameters:
        expected - the expected result.
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitContainsIgnoreCase

        default boolean waitContainsIgnoreCase​(java.lang.String expected)

        Wait for CConfigs.TypeExtension.getDefaultWaitInSeconds() number of milliseconds until result of StringUtils.containsIgnoreCase(CharSequence, CharSequence) is true, ignoring case.

        Parameters:
        expected - the expected result.
        Returns:
        true if wait operation succeed otherwise return false
      • waitContainsIgnoreCase

        default boolean waitContainsIgnoreCase​(java.lang.String expected,
                                               int waitInSeconds)

        Wait for defined number of seconds until result of StringUtils.containsIgnoreCase(CharSequence, CharSequence) is true, ignoring case.

        Parameters:
        expected - the expected result.
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitContainsIgnoreCase

        default boolean waitContainsIgnoreCase​(java.lang.String expected,
                                               int waitInSeconds,
                                               int intervalInMilliSeconds)

        Wait for defined number of seconds until result of StringUtils.containsIgnoreCase(CharSequence, CharSequence) is true, ignoring case.

        Parameters:
        expected - the expected result.
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitEndsWith

        default boolean waitEndsWith​(java.lang.String suffix)

        Wait for CConfigs.TypeExtension.getDefaultWaitInSeconds() number of milliseconds until result of StringUtils.endsWith(CharSequence, CharSequence) is true

        Parameters:
        suffix - the suffix to find, may be null
        Returns:
        true if wait operation succeed otherwise return false
      • waitEndsWith

        default boolean waitEndsWith​(java.lang.String suffix,
                                     int waitInSeconds)

        Wait for defined number of seconds until result of StringUtils.endsWith(CharSequence, CharSequence) is true

        Parameters:
        suffix - the suffix to find, may be null
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitEndsWith

        default boolean waitEndsWith​(java.lang.String suffix,
                                     int waitInSeconds,
                                     int intervalInMilliSeconds)

        Wait for defined number of seconds until result of StringUtils.endsWith(CharSequence, CharSequence) is true

        Parameters:
        suffix - the suffix to find, may be null
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitEndsWithAny

        default boolean waitEndsWithAny​(java.util.List<java.lang.String> searchInputs)

        Wait for CConfigs.TypeExtension.getDefaultWaitInSeconds() number of milliseconds until result of StringUtils.endsWithAny(CharSequence, CharSequence...) is true.

        Parameters:
        searchInputs - the case-sensitive CharSequences to find, may be empty or contain null
        Returns:
        true if wait operation succeed otherwise return false
      • waitEndsWithAny

        default boolean waitEndsWithAny​(java.util.List<java.lang.String> searchInputs,
                                        int waitInSeconds)

        Wait for defined number of seconds until result of StringUtils.endsWithAny(CharSequence, CharSequence...) is true.

        Parameters:
        searchInputs - the case-sensitive CharSequences to find, may be empty or contain null
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitEndsWithAny

        default boolean waitEndsWithAny​(java.util.List<java.lang.String> searchInputs,
                                        int waitInSeconds,
                                        int intervalInMilliSeconds)

        Wait for defined number of seconds until result of StringUtils.endsWithAny(CharSequence, CharSequence...) is true.

        Parameters:
        searchInputs - the case-sensitive CharSequences to find, may be empty or contain null
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitEndsWithIgnoreCase

        default boolean waitEndsWithIgnoreCase​(java.lang.String suffix)

        Wait for CConfigs.TypeExtension.getDefaultWaitInSeconds() number of milliseconds until result of StringUtils.endsWithIgnoreCase(CharSequence, CharSequence) is true.

        Parameters:
        suffix - the suffix to find, may be null
        Returns:
        true if wait operation succeed otherwise return false
      • waitEndsWithIgnoreCase

        default boolean waitEndsWithIgnoreCase​(java.lang.String suffix,
                                               int waitInSeconds)

        Wait for defined number of seconds until result of StringUtils.endsWithIgnoreCase(CharSequence, CharSequence) is true.

        Parameters:
        suffix - the suffix to find, may be null
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitEndsWithIgnoreCase

        default boolean waitEndsWithIgnoreCase​(java.lang.String suffix,
                                               int waitInSeconds,
                                               int intervalInMilliSeconds)

        Wait for defined number of seconds until result of StringUtils.endsWithIgnoreCase(CharSequence, CharSequence) is true.

        Parameters:
        suffix - the suffix to find, may be null
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitEndsWithNone

        default boolean waitEndsWithNone​(java.util.List<java.lang.String> searchInputs)

        Wait for CConfigs.TypeExtension.getDefaultWaitInSeconds() number of milliseconds until result of StringUtils.endsWithAny(CharSequence, CharSequence...) is false.

        Parameters:
        searchInputs - the case-sensitive CharSequences to find, may be empty or contain null
        Returns:
        true if wait operation succeed otherwise return false
      • waitEndsWithNone

        default boolean waitEndsWithNone​(java.util.List<java.lang.String> searchInputs,
                                         int waitInSeconds)

        Wait for defined number of seconds until result of StringUtils.endsWithAny(CharSequence, CharSequence...) is false.

        Parameters:
        searchInputs - the case-sensitive CharSequences to find, may be empty or contain null
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitEndsWithNone

        default boolean waitEndsWithNone​(java.util.List<java.lang.String> searchInputs,
                                         int waitInSeconds,
                                         int intervalInMilliSeconds)

        Wait for defined number of seconds until result of StringUtils.endsWithAny(CharSequence, CharSequence...) is false.

        Parameters:
        searchInputs - the case-sensitive CharSequences to find, may be empty or contain null
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitEqualsAnyIgnoreCase

        default boolean waitEqualsAnyIgnoreCase​(java.util.List<java.lang.String> expectedList)

        Wait for CConfigs.TypeExtension.getDefaultWaitInSeconds() number of milliseconds until result of StringUtils.equalsAnyIgnoreCase(CharSequence, CharSequence...) equals to the expected value, ignoring case.

        Parameters:
        expectedList - a list of strings, may be null.
        Returns:
        true if wait operation succeed otherwise return false
      • waitEqualsAnyIgnoreCase

        default boolean waitEqualsAnyIgnoreCase​(java.util.List<java.lang.String> expectedList,
                                                int waitInSeconds)

        Wait for defined number of seconds until result of StringUtils.equalsAnyIgnoreCase(CharSequence, CharSequence...) equals to the expected value, ignoring case.

        Parameters:
        expectedList - a list of strings, may be null.
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitEqualsAnyIgnoreCase

        default boolean waitEqualsAnyIgnoreCase​(java.util.List<java.lang.String> expectedList,
                                                int waitInSeconds,
                                                int intervalInMilliSeconds)

        Wait for defined number of seconds until result of StringUtils.equalsAnyIgnoreCase(CharSequence, CharSequence...) equals to the expected value, ignoring case.

        Parameters:
        expectedList - a list of strings, may be null.
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitEqualsIgnoreCase

        default boolean waitEqualsIgnoreCase​(java.lang.String expected)

        Wait for CConfigs.TypeExtension.getDefaultWaitInSeconds() number of milliseconds till if StringUtils.equalsIgnoreCase(CharSequence, CharSequence) value equals the expected value.

        Parameters:
        expected - the expected result.
        Returns:
        true if wait operation succeed otherwise return false
      • waitEqualsIgnoreCase

        default boolean waitEqualsIgnoreCase​(java.lang.String expected,
                                             int waitInSeconds)

        Wait for defined number of seconds till if StringUtils.equalsIgnoreCase(CharSequence, CharSequence) value equals the expected value.

        Parameters:
        expected - the expected result.
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitEqualsIgnoreCase

        default boolean waitEqualsIgnoreCase​(java.lang.String expected,
                                             int waitInSeconds,
                                             int intervalInMilliSeconds)

        Wait for defined number of seconds till if StringUtils.equalsIgnoreCase(CharSequence, CharSequence) value equals the expected value.

        Parameters:
        expected - the expected result.
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitEqualsIgnoreWhiteSpaces

        default boolean waitEqualsIgnoreWhiteSpaces​(java.lang.String expected)

        Wait for CConfigs.TypeExtension.getDefaultWaitInSeconds() number of milliseconds till if value is equal to expected after removing all WhiteSpaces from both.

        Parameters:
        expected - the expected result.
        Returns:
        true if wait operation succeed otherwise return false
      • waitEqualsIgnoreWhiteSpaces

        default boolean waitEqualsIgnoreWhiteSpaces​(java.lang.String expected,
                                                    int waitInSeconds)

        Wait for defined number of seconds till if value is equal to expected after removing all WhiteSpaces from both.

        Parameters:
        expected - the expected result.
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitEqualsIgnoreWhiteSpaces

        default boolean waitEqualsIgnoreWhiteSpaces​(java.lang.String expected,
                                                    int waitInSeconds,
                                                    int intervalInMilliSeconds)

        Wait for defined number of seconds till if value is equal to expected after removing all WhiteSpaces from both.

        Parameters:
        expected - the expected result.
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitEqualsNoneIgnoreCase

        default boolean waitEqualsNoneIgnoreCase​(java.util.List<java.lang.String> expectedList)

        Wait for CConfigs.TypeExtension.getDefaultWaitInSeconds() number of milliseconds until result of StringUtils.equalsAnyIgnoreCase(CharSequence, CharSequence...) is false, ignoring case.

        Parameters:
        expectedList - a list of strings, may be null.
        Returns:
        true if wait operation succeed otherwise return false
      • waitEqualsNoneIgnoreCase

        default boolean waitEqualsNoneIgnoreCase​(java.util.List<java.lang.String> expectedList,
                                                 int waitInSeconds)

        Wait for defined number of seconds until result of StringUtils.equalsAnyIgnoreCase(CharSequence, CharSequence...) is false, ignoring case.

        Parameters:
        expectedList - a list of strings, may be null.
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitEqualsNoneIgnoreCase

        default boolean waitEqualsNoneIgnoreCase​(java.util.List<java.lang.String> expectedList,
                                                 int waitInSeconds,
                                                 int intervalInMilliSeconds)

        Wait for defined number of seconds until result of StringUtils.equalsAnyIgnoreCase(CharSequence, CharSequence...) is false, ignoring case.

        Parameters:
        expectedList - a list of strings, may be null.
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitIsAlpha

        default boolean waitIsAlpha()

        Wait for CConfigs.TypeExtension.getDefaultWaitInSeconds() number of milliseconds until result of StringUtils.isAlpha(CharSequence) is true.

        Returns:
        true if wait operation succeed otherwise return false
      • waitIsAlpha

        default boolean waitIsAlpha​(int waitInSeconds)

        Wait for defined number of seconds until result of StringUtils.isAlpha(CharSequence) is true.

        Parameters:
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitIsAlpha

        default boolean waitIsAlpha​(int waitInSeconds,
                                    int intervalInMilliSeconds)

        Wait for defined number of seconds until result of StringUtils.isAlpha(CharSequence) is true.

        Parameters:
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitIsAlphaSpace

        default boolean waitIsAlphaSpace()

        Wait for CConfigs.TypeExtension.getDefaultWaitInSeconds() number of milliseconds until result of StringUtils.isAlphaSpace(CharSequence) is true.

        Returns:
        true if wait operation succeed otherwise return false
      • waitIsAlphaSpace

        default boolean waitIsAlphaSpace​(int waitInSeconds)

        Wait for defined number of seconds until result of StringUtils.isAlphaSpace(CharSequence) is true.

        Parameters:
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitIsAlphaSpace

        default boolean waitIsAlphaSpace​(int waitInSeconds,
                                         int intervalInMilliSeconds)

        Wait for defined number of seconds until result of StringUtils.isAlphaSpace(CharSequence) is true.

        Parameters:
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitIsAlphanumeric

        default boolean waitIsAlphanumeric()

        Wait for CConfigs.TypeExtension.getDefaultWaitInSeconds() number of milliseconds until result of StringUtils.isAlphanumeric(CharSequence) is true.

        Returns:
        true if wait operation succeed otherwise return false
      • waitIsAlphanumeric

        default boolean waitIsAlphanumeric​(int waitInSeconds)

        Wait for defined number of seconds until result of StringUtils.isAlphanumeric(CharSequence) is true.

        Parameters:
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitIsAlphanumeric

        default boolean waitIsAlphanumeric​(int waitInSeconds,
                                           int intervalInMilliSeconds)

        Wait for defined number of seconds until result of StringUtils.isAlphanumeric(CharSequence) is true.

        Parameters:
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitIsAlphanumericSpace

        default boolean waitIsAlphanumericSpace()

        Wait for CConfigs.TypeExtension.getDefaultWaitInSeconds() number of milliseconds until result of StringUtils.isAlphanumericSpace(CharSequence) is true.

        Returns:
        true if wait operation succeed otherwise return false
      • waitIsAlphanumericSpace

        default boolean waitIsAlphanumericSpace​(int waitInSeconds)

        Wait for defined number of seconds until result of StringUtils.isAlphanumericSpace(CharSequence) is true.

        Parameters:
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitIsAlphanumericSpace

        default boolean waitIsAlphanumericSpace​(int waitInSeconds,
                                                int intervalInMilliSeconds)

        Wait for defined number of seconds until result of StringUtils.isAlphanumericSpace(CharSequence) is true.

        Parameters:
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitIsAsciiPrintable

        default boolean waitIsAsciiPrintable()

        Wait for CConfigs.TypeExtension.getDefaultWaitInSeconds() number of milliseconds until result of StringUtils.isAsciiPrintable(CharSequence) is true.

        Returns:
        true if wait operation succeed otherwise return false
      • waitIsAsciiPrintable

        default boolean waitIsAsciiPrintable​(int waitInSeconds)

        Wait for defined number of seconds until result of StringUtils.isAsciiPrintable(CharSequence) is true.

        Parameters:
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitIsAsciiPrintable

        default boolean waitIsAsciiPrintable​(int waitInSeconds,
                                             int intervalInMilliSeconds)

        Wait for defined number of seconds until result of StringUtils.isAsciiPrintable(CharSequence) is true.

        Parameters:
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitIsBlank

        default boolean waitIsBlank()

        Wait for CConfigs.TypeExtension.getDefaultWaitInSeconds() number of milliseconds till if String value is blank (Null or Empty)

        Returns:
        true if wait operation succeed otherwise return false
      • waitIsBlank

        default boolean waitIsBlank​(int waitInSeconds)

        Wait for defined number of seconds till if String value is blank (Null or Empty)

        Parameters:
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitIsBlank

        default boolean waitIsBlank​(int waitInSeconds,
                                    int intervalInMilliSeconds)

        Wait for defined number of seconds till if String value is blank (Null or Empty)

        Parameters:
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitIsEmpty

        default boolean waitIsEmpty()

        Wait for CConfigs.TypeExtension.getDefaultWaitInSeconds() number of milliseconds till if String value is empty

        Returns:
        true if wait operation succeed otherwise return false
      • waitIsEmpty

        default boolean waitIsEmpty​(int waitInSeconds)

        Wait for defined number of seconds till if String value is empty

        Parameters:
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitIsEmpty

        default boolean waitIsEmpty​(int waitInSeconds,
                                    int intervalInMilliSeconds)

        Wait for defined number of seconds till if String value is empty

        Parameters:
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitIsEmptyOrAlpha

        default boolean waitIsEmptyOrAlpha()

        Wait for CConfigs.TypeExtension.getDefaultWaitInSeconds() number of milliseconds till if string value is empty or the result of StringUtils.isAlpha(CharSequence) is true.

        Returns:
        true if wait operation succeed otherwise return false
      • waitIsEmptyOrAlpha

        default boolean waitIsEmptyOrAlpha​(int waitInSeconds)

        Wait for defined number of seconds till if string value is empty or the result of StringUtils.isAlpha(CharSequence) is true.

        Parameters:
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitIsEmptyOrAlpha

        default boolean waitIsEmptyOrAlpha​(int waitInSeconds,
                                           int intervalInMilliSeconds)

        Wait for defined number of seconds till if string value is empty or the result of StringUtils.isAlpha(CharSequence) is true.

        Parameters:
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitIsEmptyOrAlphanumeric

        default boolean waitIsEmptyOrAlphanumeric()

        Wait for CConfigs.TypeExtension.getDefaultWaitInSeconds() number of milliseconds till if string value is empty or the result of StringUtils.isAlphanumeric(CharSequence) is true.

        Returns:
        true if wait operation succeed otherwise return false
      • waitIsEmptyOrAlphanumeric

        default boolean waitIsEmptyOrAlphanumeric​(int waitInSeconds)

        Wait for defined number of seconds till if string value is empty or the result of StringUtils.isAlphanumeric(CharSequence) is true.

        Parameters:
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitIsEmptyOrAlphanumeric

        default boolean waitIsEmptyOrAlphanumeric​(int waitInSeconds,
                                                  int intervalInMilliSeconds)

        Wait for defined number of seconds till if string value is empty or the result of StringUtils.isAlphanumeric(CharSequence) is true.

        Parameters:
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitIsEmptyOrNotAlpha

        default boolean waitIsEmptyOrNotAlpha()

        Wait for CConfigs.TypeExtension.getDefaultWaitInSeconds() number of milliseconds till if string value is empty or the result of StringUtils.isAlpha(CharSequence) is false.

        Returns:
        true if wait operation succeed otherwise return false
      • waitIsEmptyOrNotAlpha

        default boolean waitIsEmptyOrNotAlpha​(int waitInSeconds)

        Wait for defined number of seconds till if string value is empty or the result of StringUtils.isAlpha(CharSequence) is false.

        Parameters:
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitIsEmptyOrNotAlpha

        default boolean waitIsEmptyOrNotAlpha​(int waitInSeconds,
                                              int intervalInMilliSeconds)

        Wait for defined number of seconds till if string value is empty or the result of StringUtils.isAlpha(CharSequence) is false.

        Parameters:
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitIsEmptyOrNotAlphanumeric

        default boolean waitIsEmptyOrNotAlphanumeric()

        Wait for CConfigs.TypeExtension.getDefaultWaitInSeconds() number of milliseconds till if string value is empty or the result of StringUtils.isAlphanumeric(CharSequence) is false.

        Returns:
        true if wait operation succeed otherwise return false
      • waitIsEmptyOrNotAlphanumeric

        default boolean waitIsEmptyOrNotAlphanumeric​(int waitInSeconds)

        Wait for defined number of seconds till if string value is empty or the result of StringUtils.isAlphanumeric(CharSequence) is false.

        Parameters:
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitIsEmptyOrNotAlphanumeric

        default boolean waitIsEmptyOrNotAlphanumeric​(int waitInSeconds,
                                                     int intervalInMilliSeconds)

        Wait for defined number of seconds till if string value is empty or the result of StringUtils.isAlphanumeric(CharSequence) is false.

        Parameters:
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitIsEmptyOrNotNumeric

        default boolean waitIsEmptyOrNotNumeric()

        Wait for CConfigs.TypeExtension.getDefaultWaitInSeconds() number of milliseconds till if string is empty or the result of StringUtils.isNumeric(CharSequence) is false.

        Returns:
        true if wait operation succeed otherwise return false
      • waitIsEmptyOrNotNumeric

        default boolean waitIsEmptyOrNotNumeric​(int waitInSeconds)

        Wait for defined number of seconds till if string is empty or the result of StringUtils.isNumeric(CharSequence) is false.

        Parameters:
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitIsEmptyOrNotNumeric

        default boolean waitIsEmptyOrNotNumeric​(int waitInSeconds,
                                                int intervalInMilliSeconds)

        Wait for defined number of seconds till if string is empty or the result of StringUtils.isNumeric(CharSequence) is false.

        Parameters:
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitIsEmptyOrNumeric

        default boolean waitIsEmptyOrNumeric()

        Wait for CConfigs.TypeExtension.getDefaultWaitInSeconds() number of milliseconds till if string is empty or the result of StringUtils.isNumeric(CharSequence) is true.

        Returns:
        true if wait operation succeed otherwise return false
      • waitIsEmptyOrNumeric

        default boolean waitIsEmptyOrNumeric​(int waitInSeconds)

        Wait for defined number of seconds till if string is empty or the result of StringUtils.isNumeric(CharSequence) is true.

        Parameters:
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitIsEmptyOrNumeric

        default boolean waitIsEmptyOrNumeric​(int waitInSeconds,
                                             int intervalInMilliSeconds)

        Wait for defined number of seconds till if string is empty or the result of StringUtils.isNumeric(CharSequence) is true.

        Parameters:
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitIsMatches

        default boolean waitIsMatches​(java.util.regex.Pattern pattern)

        Wait for CConfigs.TypeExtension.getDefaultWaitInSeconds() number of milliseconds till if String value match provided pattern

        Parameters:
        pattern - regular experession pattern
        Returns:
        true if wait operation succeed otherwise return false
      • waitIsMatches

        default boolean waitIsMatches​(java.util.regex.Pattern pattern,
                                      int waitInSeconds)

        Wait for defined number of seconds till if String value match provided pattern

        Parameters:
        pattern - regular experession pattern
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitIsMatches

        default boolean waitIsMatches​(java.util.regex.Pattern pattern,
                                      int waitInSeconds,
                                      int intervalInMilliSeconds)

        Wait for defined number of seconds till if String value match provided pattern

        Parameters:
        pattern - regular experession pattern
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitIsMatches

        default boolean waitIsMatches​(java.lang.String pattern)

        Wait for CConfigs.TypeExtension.getDefaultWaitInSeconds() number of milliseconds till if String value match provided pattern

        Parameters:
        pattern - regular experession pattern
        Returns:
        true if wait operation succeed otherwise return false
      • waitIsMatches

        default boolean waitIsMatches​(java.lang.String pattern,
                                      int waitInSeconds)

        Wait for defined number of seconds till if String value match provided pattern

        Parameters:
        pattern - regular experession pattern
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitIsMatches

        default boolean waitIsMatches​(java.lang.String pattern,
                                      int waitInSeconds,
                                      int intervalInMilliSeconds)

        Wait for defined number of seconds till if String value match provided pattern

        Parameters:
        pattern - regular experession pattern
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitIsNotAlpha

        default boolean waitIsNotAlpha()

        Wait for CConfigs.TypeExtension.getDefaultWaitInSeconds() number of milliseconds until result of StringUtils.isAlpha(CharSequence) is false.

        Returns:
        true if wait operation succeed otherwise return false
      • waitIsNotAlpha

        default boolean waitIsNotAlpha​(int waitInSeconds)

        Wait for defined number of seconds until result of StringUtils.isAlpha(CharSequence) is false.

        Parameters:
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitIsNotAlpha

        default boolean waitIsNotAlpha​(int waitInSeconds,
                                       int intervalInMilliSeconds)

        Wait for defined number of seconds until result of StringUtils.isAlpha(CharSequence) is false.

        Parameters:
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitIsNotAlphaSpace

        default boolean waitIsNotAlphaSpace()

        Wait for CConfigs.TypeExtension.getDefaultWaitInSeconds() number of milliseconds until result of StringUtils.isAlphaSpace(CharSequence) is false.

        Returns:
        true if wait operation succeed otherwise return false
      • waitIsNotAlphaSpace

        default boolean waitIsNotAlphaSpace​(int waitInSeconds)

        Wait for defined number of seconds until result of StringUtils.isAlphaSpace(CharSequence) is false.

        Parameters:
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitIsNotAlphaSpace

        default boolean waitIsNotAlphaSpace​(int waitInSeconds,
                                            int intervalInMilliSeconds)

        Wait for defined number of seconds until result of StringUtils.isAlphaSpace(CharSequence) is false.

        Parameters:
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitIsNotAlphanumeric

        default boolean waitIsNotAlphanumeric()

        Wait for CConfigs.TypeExtension.getDefaultWaitInSeconds() number of milliseconds until result of StringUtils.isAlphanumeric(CharSequence) is false.

        Returns:
        true if wait operation succeed otherwise return false
      • waitIsNotAlphanumeric

        default boolean waitIsNotAlphanumeric​(int waitInSeconds)

        Wait for defined number of seconds until result of StringUtils.isAlphanumeric(CharSequence) is false.

        Parameters:
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitIsNotAlphanumeric

        default boolean waitIsNotAlphanumeric​(int waitInSeconds,
                                              int intervalInMilliSeconds)

        Wait for defined number of seconds until result of StringUtils.isAlphanumeric(CharSequence) is false.

        Parameters:
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitIsNotAlphanumericSpace

        default boolean waitIsNotAlphanumericSpace()

        Wait for CConfigs.TypeExtension.getDefaultWaitInSeconds() number of milliseconds until result of StringUtils.isAlphanumericSpace(CharSequence) is false.

        Returns:
        true if wait operation succeed otherwise return false
      • waitIsNotAlphanumericSpace

        default boolean waitIsNotAlphanumericSpace​(int waitInSeconds)

        Wait for defined number of seconds until result of StringUtils.isAlphanumericSpace(CharSequence) is false.

        Parameters:
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitIsNotAlphanumericSpace

        default boolean waitIsNotAlphanumericSpace​(int waitInSeconds,
                                                   int intervalInMilliSeconds)

        Wait for defined number of seconds until result of StringUtils.isAlphanumericSpace(CharSequence) is false.

        Parameters:
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitIsNotAsciiPrintable

        default boolean waitIsNotAsciiPrintable()

        Wait for CConfigs.TypeExtension.getDefaultWaitInSeconds() number of milliseconds until result of StringUtils.isAsciiPrintable(CharSequence) is false.

        Returns:
        true if wait operation succeed otherwise return false
      • waitIsNotAsciiPrintable

        default boolean waitIsNotAsciiPrintable​(int waitInSeconds)

        Wait for defined number of seconds until result of StringUtils.isAsciiPrintable(CharSequence) is false.

        Parameters:
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitIsNotAsciiPrintable

        default boolean waitIsNotAsciiPrintable​(int waitInSeconds,
                                                int intervalInMilliSeconds)

        Wait for defined number of seconds until result of StringUtils.isAsciiPrintable(CharSequence) is false.

        Parameters:
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitIsNotBlank

        default boolean waitIsNotBlank()

        Wait for CConfigs.TypeExtension.getDefaultWaitInSeconds() number of milliseconds till if String value is not blank (Null or Empty)

        Returns:
        true if wait operation succeed otherwise return false
      • waitIsNotBlank

        default boolean waitIsNotBlank​(int waitInSeconds)

        Wait for defined number of seconds till if String value is not blank (Null or Empty)

        Parameters:
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitIsNotBlank

        default boolean waitIsNotBlank​(int waitInSeconds,
                                       int intervalInMilliSeconds)

        Wait for defined number of seconds till if String value is not blank (Null or Empty)

        Parameters:
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitIsNotEmpty

        default boolean waitIsNotEmpty()

        Wait for CConfigs.TypeExtension.getDefaultWaitInSeconds() number of milliseconds till String value is not empty

        Returns:
        true if wait operation succeed otherwise return false
      • waitIsNotEmpty

        default boolean waitIsNotEmpty​(int waitInSeconds)

        Wait for defined number of seconds till String value is not empty

        Parameters:
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitIsNotEmpty

        default boolean waitIsNotEmpty​(int waitInSeconds,
                                       int intervalInMilliSeconds)

        Wait for defined number of seconds till String value is not empty

        Parameters:
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitIsNotMatches

        default boolean waitIsNotMatches​(java.util.regex.Pattern pattern)

        Wait for CConfigs.TypeExtension.getDefaultWaitInSeconds() number of milliseconds till if String value does not match provided pattern

        Parameters:
        pattern - regular experession pattern
        Returns:
        true if wait operation succeed otherwise return false
      • waitIsNotMatches

        default boolean waitIsNotMatches​(java.util.regex.Pattern pattern,
                                         int waitInSeconds)

        Wait for defined number of seconds till if String value does not match provided pattern

        Parameters:
        waitInSeconds - maximum wait time.
        pattern - regular experession pattern
        Returns:
        true if wait operation succeed otherwise return false
      • waitIsNotMatches

        default boolean waitIsNotMatches​(java.util.regex.Pattern pattern,
                                         int waitInSeconds,
                                         int intervalInMilliSeconds)

        Wait for defined number of seconds till if String value does not match provided pattern

        Parameters:
        waitInSeconds - maximum wait time.
        pattern - regular experession pattern
        Returns:
        true if wait operation succeed otherwise return false
      • waitIsNotMatches

        default boolean waitIsNotMatches​(java.lang.String pattern)

        Wait for CConfigs.TypeExtension.getDefaultWaitInSeconds() number of milliseconds till if String value does not match provided pattern

        Parameters:
        pattern - regular experession pattern
        Returns:
        true if wait operation succeed otherwise return false
      • waitIsNotMatches

        default boolean waitIsNotMatches​(java.lang.String pattern,
                                         int waitInSeconds)

        Wait for defined number of seconds till if String value does not match provided pattern

        Parameters:
        waitInSeconds - maximum wait time.
        pattern - regular experession pattern
        Returns:
        true if wait operation succeed otherwise return false
      • waitIsNotMatches

        default boolean waitIsNotMatches​(java.lang.String pattern,
                                         int waitInSeconds,
                                         int intervalInMilliSeconds)

        Wait for defined number of seconds till if String value does not match provided pattern

        Parameters:
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        pattern - regular experession pattern
        Returns:
        true if wait operation succeed otherwise return false
      • waitIsNotNumeric

        default boolean waitIsNotNumeric()

        Wait for CConfigs.TypeExtension.getDefaultWaitInSeconds() number of milliseconds until result of StringUtils.isNumeric(CharSequence) is false.

        Returns:
        true if wait operation succeed otherwise return false
      • waitIsNotNumeric

        default boolean waitIsNotNumeric​(int waitInSeconds)

        Wait for defined number of seconds until result of StringUtils.isNumeric(CharSequence) is false.

        Parameters:
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitIsNotNumeric

        default boolean waitIsNotNumeric​(int waitInSeconds,
                                         int intervalInMilliSeconds)

        Wait for defined number of seconds until result of StringUtils.isNumeric(CharSequence) is false.

        Parameters:
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitIsNotNumericSpace

        default boolean waitIsNotNumericSpace()

        Wait for CConfigs.TypeExtension.getDefaultWaitInSeconds() number of milliseconds until result of StringUtils.isNumericSpace(CharSequence) is false.

        Returns:
        true if wait operation succeed otherwise return false
      • waitIsNotNumericSpace

        default boolean waitIsNotNumericSpace​(int waitInSeconds)

        Wait for defined number of seconds until result of StringUtils.isNumericSpace(CharSequence) is false.

        Parameters:
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitIsNotNumericSpace

        default boolean waitIsNotNumericSpace​(int waitInSeconds,
                                              int intervalInMilliSeconds)

        Wait for defined number of seconds until result of StringUtils.isNumericSpace(CharSequence) is false.

        Parameters:
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitIsNumeric

        default boolean waitIsNumeric()

        Wait for CConfigs.TypeExtension.getDefaultWaitInSeconds() number of milliseconds until result of StringUtils.isNumeric(CharSequence) is true.

        Returns:
        true if wait operation succeed otherwise return false
      • waitIsNumeric

        default boolean waitIsNumeric​(int waitInSeconds)

        Wait for defined number of seconds until result of StringUtils.isNumeric(CharSequence) is true.

        Parameters:
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitIsNumeric

        default boolean waitIsNumeric​(int minLength,
                                      int maxLength)

        Wait for CConfigs.TypeExtension.getDefaultWaitInSeconds() number of milliseconds till if string value is empty or the result of StringUtils.isNumeric(CharSequence) is true and string length is between minLength and maxLength.

        Parameters:
        minLength - minimum expected side of string if it is not empty
        maxLength - maximum expected side of string if it is not empty
        Returns:
        true if wait operation succeed otherwise return false
      • waitIsNumeric

        default boolean waitIsNumeric​(int minLength,
                                      int maxLength,
                                      int waitInSeconds)

        Wait for defined number of seconds till if string value is empty or the result of StringUtils.isNumeric(CharSequence) is true and string length is between minLength and maxLength.

        Parameters:
        minLength - minimum expected side of string if it is not empty
        maxLength - maximum expected side of string if it is not empty
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitIsNumeric

        default boolean waitIsNumeric​(int minLength,
                                      int maxLength,
                                      int waitInSeconds,
                                      int intervalInMilliSeconds)

        Wait for defined number of seconds till if string value is empty or the result of StringUtils.isNumeric(CharSequence) is true and string length is between minLength and maxLength.

        Parameters:
        minLength - minimum expected side of string if it is not empty
        maxLength - maximum expected side of string if it is not empty
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitIsNumericSpace

        default boolean waitIsNumericSpace()

        Wait for CConfigs.TypeExtension.getDefaultWaitInSeconds() number of milliseconds until result of StringUtils.isNumericSpace(CharSequence) is true.

        Returns:
        true if wait operation succeed otherwise return false
      • waitIsNumericSpace

        default boolean waitIsNumericSpace​(int waitInSeconds)

        Wait for defined number of seconds until result of StringUtils.isNumericSpace(CharSequence) is true.

        Parameters:
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitIsNumericSpace

        default boolean waitIsNumericSpace​(int waitInSeconds,
                                           int intervalInMilliSeconds)

        Wait for defined number of seconds until result of StringUtils.isNumericSpace(CharSequence) is true.

        Parameters:
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitLeftPadEquals

        default boolean waitLeftPadEquals​(int size,
                                          java.lang.String padStr,
                                          java.lang.String expected)

        Wait for defined number of seconds until result of StringUtils.leftPad(String, int, String) is equals to expected value.

        Parameters:
        size - the size to pad to
        padStr - the String to pad with, null or empty treated as single space
        expected - the expected result.
        Returns:
        true if wait operation succeed otherwise return false
      • waitLeftPadEquals

        default boolean waitLeftPadEquals​(int size,
                                          java.lang.String padStr,
                                          java.lang.String expected,
                                          int waitInSeconds)

        Wait for defined number of seconds until result of StringUtils.leftPad(String, int, String) is equals to expected value.

        Parameters:
        size - the size to pad to
        padStr - the String to pad with, null or empty treated as single space
        expected - the expected result.
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitLeftPadEquals

        default boolean waitLeftPadEquals​(int size,
                                          java.lang.String padStr,
                                          java.lang.String expected,
                                          int waitInSeconds,
                                          int intervalInMilliSeconds)

        Wait for defined number of seconds until result of StringUtils.leftPad(String, int, String) is equals to expected value.

        Parameters:
        size - the size to pad to
        padStr - the String to pad with, null or empty treated as single space
        expected - the expected result.
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitLeftPadNotEquals

        default boolean waitLeftPadNotEquals​(int size,
                                             java.lang.String padStr,
                                             java.lang.String expected)

        Wait for defined number of seconds until result of StringUtils.leftPad(String, int, String) is NOT equals to expected value.

        Parameters:
        size - the size to pad to
        padStr - the String to pad with, null or empty treated as single space
        expected - the expected result.
        Returns:
        true if wait operation succeed otherwise return false
      • waitLeftPadNotEquals

        default boolean waitLeftPadNotEquals​(int size,
                                             java.lang.String padStr,
                                             java.lang.String expected,
                                             int waitInSeconds)

        Wait for defined number of seconds until result of StringUtils.leftPad(String, int, String) is NOT equals to expected value.

        Parameters:
        size - the size to pad to
        padStr - the String to pad with, null or empty treated as single space
        expected - the expected result.
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitLeftPadNotEquals

        default boolean waitLeftPadNotEquals​(int size,
                                             java.lang.String padStr,
                                             java.lang.String expected,
                                             int waitInSeconds,
                                             int intervalInMilliSeconds)

        Wait for defined number of seconds until result of StringUtils.leftPad(String, int, String) is NOT equals to expected value.

        Parameters:
        size - the size to pad to
        padStr - the String to pad with, null or empty treated as single space
        expected - the expected result.
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitLeftValueEquals

        default boolean waitLeftValueEquals​(int len,
                                            java.lang.String expected)

        Wait for defined number of seconds until result of StringUtils.left(String, int) equals to expected value.

        Parameters:
        expected - the expected result.
        len - the length of the required String
        Returns:
        true if wait operation succeed otherwise return false
      • waitLeftValueEquals

        default boolean waitLeftValueEquals​(int len,
                                            java.lang.String expected,
                                            int waitInSeconds)

        Wait for defined number of seconds until result of StringUtils.left(String, int) equals to expected value.

        Parameters:
        expected - the expected result.
        len - the length of the required String
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitLeftValueEquals

        default boolean waitLeftValueEquals​(int len,
                                            java.lang.String expected,
                                            int waitInSeconds,
                                            int intervalInMilliSeconds)

        Wait for defined number of seconds until result of StringUtils.left(String, int) equals to expected value.

        Parameters:
        expected - the expected result.
        len - the length of the required String
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitLeftValueNotEquals

        default boolean waitLeftValueNotEquals​(int len,
                                               java.lang.String expected)

        Wait for defined number of seconds until result of StringUtils.left(String, int) NOT equals to expected value.

        Parameters:
        expected - the expected result.
        len - the length of the required String
        Returns:
        true if wait operation succeed otherwise return false
      • waitLeftValueNotEquals

        default boolean waitLeftValueNotEquals​(int len,
                                               java.lang.String expected,
                                               int waitInSeconds)

        Wait for defined number of seconds until result of StringUtils.left(String, int) NOT equals to expected value.

        Parameters:
        expected - the expected result.
        len - the length of the required String
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitLeftValueNotEquals

        default boolean waitLeftValueNotEquals​(int len,
                                               java.lang.String expected,
                                               int waitInSeconds,
                                               int intervalInMilliSeconds)

        Wait for defined number of seconds until result of StringUtils.left(String, int) NOT equals to expected value.

        Parameters:
        expected - the expected result.
        len - the length of the required String
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitLengthEquals

        default boolean waitLengthEquals​(int expected)

        Wait for defined number of seconds until result of StringUtils.length(CharSequence) is equals to expected value.

        Parameters:
        expected - the expected result.
        Returns:
        true if wait operation succeed otherwise return false
      • waitLengthEquals

        default boolean waitLengthEquals​(int expected,
                                         int waitInSeconds)

        Wait for defined number of seconds until result of StringUtils.length(CharSequence) is equals to expected value.

        Parameters:
        expected - the expected result.
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitLengthEquals

        default boolean waitLengthEquals​(int expected,
                                         int waitInSeconds,
                                         int intervalInMilliSeconds)

        Wait for defined number of seconds until result of StringUtils.length(CharSequence) is equals to expected value.

        Parameters:
        expected - the expected result.
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitLengthNotEquals

        default boolean waitLengthNotEquals​(int expected)

        Wait for defined number of seconds until result of StringUtils.length(CharSequence) is NOT equals to expected value.

        Parameters:
        expected - the expected result.
        Returns:
        true if wait operation succeed otherwise return false
      • waitLengthNotEquals

        default boolean waitLengthNotEquals​(int expected,
                                            int waitInSeconds)

        Wait for defined number of seconds until result of StringUtils.length(CharSequence) is NOT equals to expected value.

        Parameters:
        expected - the expected result.
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitLengthNotEquals

        default boolean waitLengthNotEquals​(int expected,
                                            int waitInSeconds,
                                            int intervalInMilliSeconds)

        Wait for defined number of seconds until result of StringUtils.length(CharSequence) is NOT equals to expected value.

        Parameters:
        expected - the expected result.
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitMidValueEquals

        default boolean waitMidValueEquals​(int pos,
                                           int len,
                                           java.lang.String expected)

        Wait for defined number of seconds until result of StringUtils.mid(String, int, int) equals to expected value.

        Parameters:
        expected - the expected result.
        pos - the position to start from, negative treated as zero
        len - the length of the required String
        Returns:
        true if wait operation succeed otherwise return false
      • waitMidValueEquals

        default boolean waitMidValueEquals​(int pos,
                                           int len,
                                           java.lang.String expected,
                                           int waitInSeconds)

        Wait for defined number of seconds until result of StringUtils.mid(String, int, int) equals to expected value.

        Parameters:
        expected - the expected result.
        pos - the position to start from, negative treated as zero
        len - the length of the required String
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitMidValueEquals

        default boolean waitMidValueEquals​(int pos,
                                           int len,
                                           java.lang.String expected,
                                           int waitInSeconds,
                                           int intervalInMilliSeconds)

        Wait for defined number of seconds until result of StringUtils.mid(String, int, int) equals to expected value.

        Parameters:
        expected - the expected result.
        pos - the position to start from, negative treated as zero
        len - the length of the required String
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitMidValueNotEquals

        default boolean waitMidValueNotEquals​(int pos,
                                              int len,
                                              java.lang.String expected)

        Wait for defined number of seconds until result of StringUtils.mid(String, int, int) NOT equals to expected value.

        Parameters:
        expected - the expected result.
        pos - the position to start from, negative treated as zero
        len - the length of the required String
        Returns:
        true if wait operation succeed otherwise return false
      • waitMidValueNotEquals

        default boolean waitMidValueNotEquals​(int pos,
                                              int len,
                                              java.lang.String expected,
                                              int waitInSeconds)

        Wait for defined number of seconds until result of StringUtils.mid(String, int, int) NOT equals to expected value.

        Parameters:
        expected - the expected result.
        pos - the position to start from, negative treated as zero
        len - the length of the required String
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitMidValueNotEquals

        default boolean waitMidValueNotEquals​(int pos,
                                              int len,
                                              java.lang.String expected,
                                              int waitInSeconds,
                                              int intervalInMilliSeconds)

        Wait for defined number of seconds until result of StringUtils.mid(String, int, int) NOT equals to expected value.

        Parameters:
        expected - the expected result.
        pos - the position to start from, negative treated as zero
        len - the length of the required String
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitNotContains

        default boolean waitNotContains​(java.lang.String expected)

        Wait for defined number of seconds until result of StringUtils.contains(CharSequence, CharSequence) is false.

        Parameters:
        expected - the expected result.
        Returns:
        true if wait operation succeed otherwise return false
      • waitNotContains

        default boolean waitNotContains​(java.lang.String expected,
                                        int waitInSeconds)

        Wait for defined number of seconds until result of StringUtils.contains(CharSequence, CharSequence) is false.

        Parameters:
        expected - the expected result.
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitNotContains

        default boolean waitNotContains​(java.lang.String expected,
                                        int waitInSeconds,
                                        int intervalInMilliSeconds)

        Wait for defined number of seconds until result of StringUtils.contains(CharSequence, CharSequence) is false.

        Parameters:
        expected - the expected result.
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitNotContainsIgnoreCase

        default boolean waitNotContainsIgnoreCase​(java.lang.String expected)

        Wait for defined number of seconds until result of StringUtils.containsIgnoreCase(CharSequence, CharSequence) is false.

        Parameters:
        expected - the expected result.
        Returns:
        true if wait operation succeed otherwise return false
      • waitNotContainsIgnoreCase

        default boolean waitNotContainsIgnoreCase​(java.lang.String expected,
                                                  int waitInSeconds)

        Wait for defined number of seconds until result of StringUtils.containsIgnoreCase(CharSequence, CharSequence) is false.

        Parameters:
        expected - the expected result.
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitNotContainsIgnoreCase

        default boolean waitNotContainsIgnoreCase​(java.lang.String expected,
                                                  int waitInSeconds,
                                                  int intervalInMilliSeconds)

        Wait for defined number of seconds until result of StringUtils.containsIgnoreCase(CharSequence, CharSequence) is false.

        Parameters:
        expected - the expected result.
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitNotEndsWith

        default boolean waitNotEndsWith​(java.lang.String suffix)

        Wait for defined number of seconds until result of StringUtils.endsWith(CharSequence, CharSequence) is false

        Parameters:
        suffix - the suffix to find, may be null
        Returns:
        true if wait operation succeed otherwise return false
      • waitNotEndsWith

        default boolean waitNotEndsWith​(java.lang.String suffix,
                                        int waitInSeconds)

        Wait for defined number of seconds until result of StringUtils.endsWith(CharSequence, CharSequence) is false

        Parameters:
        suffix - the suffix to find, may be null
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitNotEndsWith

        default boolean waitNotEndsWith​(java.lang.String suffix,
                                        int waitInSeconds,
                                        int intervalInMilliSeconds)

        Wait for defined number of seconds until result of StringUtils.endsWith(CharSequence, CharSequence) is false

        Parameters:
        suffix - the suffix to find, may be null
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitNotEndsWithIgnoreCase

        default boolean waitNotEndsWithIgnoreCase​(java.lang.String suffix)

        Wait for defined number of seconds until result of StringUtils.endsWithIgnoreCase(CharSequence, CharSequence) is false.

        Parameters:
        suffix - the suffix to find, may be null
        Returns:
        true if wait operation succeed otherwise return false
      • waitNotEndsWithIgnoreCase

        default boolean waitNotEndsWithIgnoreCase​(java.lang.String suffix,
                                                  int waitInSeconds)

        Wait for defined number of seconds until result of StringUtils.endsWithIgnoreCase(CharSequence, CharSequence) is false.

        Parameters:
        suffix - the suffix to find, may be null
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitNotEndsWithIgnoreCase

        default boolean waitNotEndsWithIgnoreCase​(java.lang.String suffix,
                                                  int waitInSeconds,
                                                  int intervalInMilliSeconds)

        Wait for defined number of seconds until result of StringUtils.endsWithIgnoreCase(CharSequence, CharSequence) is false.

        Parameters:
        suffix - the suffix to find, may be null
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitNotEqualsIgnoreCase

        default boolean waitNotEqualsIgnoreCase​(java.lang.String expected)

        Wait for defined number of seconds till if StringUtils.equalsIgnoreCase(CharSequence, CharSequence) value NOT equals the expected value.

        Parameters:
        expected - the expected result.
        Returns:
        true if wait operation succeed otherwise return false
      • waitNotEqualsIgnoreCase

        default boolean waitNotEqualsIgnoreCase​(java.lang.String expected,
                                                int waitInSeconds)

        Wait for defined number of seconds till if StringUtils.equalsIgnoreCase(CharSequence, CharSequence) value NOT equals the expected value.

        Parameters:
        expected - the expected result.
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitNotEqualsIgnoreCase

        default boolean waitNotEqualsIgnoreCase​(java.lang.String expected,
                                                int waitInSeconds,
                                                int intervalInMilliSeconds)

        Wait for defined number of seconds till if StringUtils.equalsIgnoreCase(CharSequence, CharSequence) value NOT equals the expected value.

        Parameters:
        expected - the expected result.
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitNotEqualsIgnoreWhiteSpaces

        default boolean waitNotEqualsIgnoreWhiteSpaces​(java.lang.String expected)

        Wait for defined number of seconds till if value is not equal to expected after removing all WhiteSpaces from both.

        Parameters:
        expected - the expected result.
        Returns:
        true if wait operation succeed otherwise return false
      • waitNotEqualsIgnoreWhiteSpaces

        default boolean waitNotEqualsIgnoreWhiteSpaces​(java.lang.String expected,
                                                       int waitInSeconds)

        Wait for defined number of seconds till if value is not equal to expected after removing all WhiteSpaces from both.

        Parameters:
        expected - the expected result.
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitNotEqualsIgnoreWhiteSpaces

        default boolean waitNotEqualsIgnoreWhiteSpaces​(java.lang.String expected,
                                                       int waitInSeconds,
                                                       int intervalInMilliSeconds)

        Wait for defined number of seconds till if value is not equal to expected after removing all WhiteSpaces from both.

        Parameters:
        expected - the expected result.
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitNotStartsWith

        default boolean waitNotStartsWith​(java.lang.String expected)

        Wait for defined number of seconds until result of StringUtils.startsWith(CharSequence, CharSequence) is false

        Parameters:
        expected - the expected result.
        Returns:
        true if wait operation succeed otherwise return false
      • waitNotStartsWith

        default boolean waitNotStartsWith​(java.lang.String expected,
                                          int waitInSeconds)

        Wait for defined number of seconds until result of StringUtils.startsWith(CharSequence, CharSequence) is false

        Parameters:
        expected - the expected result.
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitNotStartsWith

        default boolean waitNotStartsWith​(java.lang.String expected,
                                          int waitInSeconds,
                                          int intervalInMilliSeconds)

        Wait for defined number of seconds until result of StringUtils.startsWith(CharSequence, CharSequence) is false

        Parameters:
        expected - the expected result.
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitNotStartsWithIgnoreCase

        default boolean waitNotStartsWithIgnoreCase​(java.lang.String expected)

        Wait for defined number of seconds until result of StringUtils.startsWithIgnoreCase(CharSequence, CharSequence) is false

        Parameters:
        expected - the expected result.
        Returns:
        true if wait operation succeed otherwise return false
      • waitNotStartsWithIgnoreCase

        default boolean waitNotStartsWithIgnoreCase​(java.lang.String expected,
                                                    int waitInSeconds)

        Wait for defined number of seconds until result of StringUtils.startsWithIgnoreCase(CharSequence, CharSequence) is false

        Parameters:
        expected - the expected result.
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitNotStartsWithIgnoreCase

        default boolean waitNotStartsWithIgnoreCase​(java.lang.String expected,
                                                    int waitInSeconds,
                                                    int intervalInMilliSeconds)

        Wait for defined number of seconds until result of StringUtils.startsWithIgnoreCase(CharSequence, CharSequence) is false

        Parameters:
        expected - the expected result.
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitNumberOfMatchesEquals

        default boolean waitNumberOfMatchesEquals​(java.lang.String subString,
                                                  int expected)

        Wait for defined number of seconds until result of StringUtils.countMatches(CharSequence, CharSequence) is equals to expected value.

        Parameters:
        expected - the expected result.
        subString - the substring to count, may be null
        Returns:
        true if wait operation succeed otherwise return false
      • waitNumberOfMatchesEquals

        default boolean waitNumberOfMatchesEquals​(java.lang.String subString,
                                                  int expected,
                                                  int waitInSeconds)

        Wait for defined number of seconds until result of StringUtils.countMatches(CharSequence, CharSequence) is equals to expected value.

        Parameters:
        expected - the expected result.
        subString - the substring to count, may be null
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitNumberOfMatchesEquals

        default boolean waitNumberOfMatchesEquals​(java.lang.String subString,
                                                  int expected,
                                                  int waitInSeconds,
                                                  int intervalInMilliSeconds)

        Wait for defined number of seconds until result of StringUtils.countMatches(CharSequence, CharSequence) is equals to expected value.

        Parameters:
        expected - the expected result.
        subString - the substring to count, may be null
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitNumberOfMatchesNotEquals

        default boolean waitNumberOfMatchesNotEquals​(java.lang.String subString,
                                                     int expected)

        Wait for defined number of seconds until result of StringUtils.countMatches(CharSequence, CharSequence) is NOT equals to expected value.

        Parameters:
        expected - the expected result.
        subString - the substring to count, may be null
        Returns:
        true if wait operation succeed otherwise return false
      • waitNumberOfMatchesNotEquals

        default boolean waitNumberOfMatchesNotEquals​(java.lang.String subString,
                                                     int expected,
                                                     int waitInSeconds)

        Wait for defined number of seconds until result of StringUtils.countMatches(CharSequence, CharSequence) is NOT equals to expected value.

        Parameters:
        expected - the expected result.
        subString - the substring to count, may be null
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitNumberOfMatchesNotEquals

        default boolean waitNumberOfMatchesNotEquals​(java.lang.String subString,
                                                     int expected,
                                                     int waitInSeconds,
                                                     int intervalInMilliSeconds)

        Wait for defined number of seconds until result of StringUtils.countMatches(CharSequence, CharSequence) is NOT equals to expected value.

        Parameters:
        expected - the expected result.
        subString - the substring to count, may be null
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitRemoveEndEquals

        default boolean waitRemoveEndEquals​(java.lang.String remove,
                                            java.lang.String expected,
                                            int waitInSeconds)

        Wait for defined number of seconds until result of StringUtils.removeEnd(String, String) is equals to expected value.

        Parameters:
        remove - the String to search for and remove, may be null
        expected - the expected result.
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitRemoveEndEquals

        default boolean waitRemoveEndEquals​(java.lang.String remove,
                                            java.lang.String expected)

        Wait for defined number of seconds until result of StringUtils.removeEnd(String, String) is equals to expected value.

        Parameters:
        remove - the String to search for and remove, may be null
        expected - the expected result.
        Returns:
        true if wait operation succeed otherwise return false
      • waitRemoveEndEquals

        default boolean waitRemoveEndEquals​(java.lang.String remove,
                                            java.lang.String expected,
                                            int waitInSeconds,
                                            int intervalInMilliSeconds)

        Wait for defined number of seconds until result of StringUtils.removeEnd(String, String) is equals to expected value.

        Parameters:
        remove - the String to search for and remove, may be null
        expected - the expected result.
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitRemoveEndIgnoreCaseEquals

        default boolean waitRemoveEndIgnoreCaseEquals​(java.lang.String remove,
                                                      java.lang.String expected)

        Wait for defined number of seconds until result of StringUtils.removeEndIgnoreCase(String, String) is equals to expected value.

        Parameters:
        remove - the String to search for (case insensitive) and remove, may be null
        expected - the expected result.
        Returns:
        true if wait operation succeed otherwise return false
      • waitRemoveEndIgnoreCaseEquals

        default boolean waitRemoveEndIgnoreCaseEquals​(java.lang.String remove,
                                                      java.lang.String expected,
                                                      int waitInSeconds)

        Wait for defined number of seconds until result of StringUtils.removeEndIgnoreCase(String, String) is equals to expected value.

        Parameters:
        remove - the String to search for (case insensitive) and remove, may be null
        expected - the expected result.
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitRemoveEndIgnoreCaseEquals

        default boolean waitRemoveEndIgnoreCaseEquals​(java.lang.String remove,
                                                      java.lang.String expected,
                                                      int waitInSeconds,
                                                      int intervalInMilliSeconds)

        Wait for defined number of seconds until result of StringUtils.removeEndIgnoreCase(String, String) is equals to expected value.

        Parameters:
        remove - the String to search for (case insensitive) and remove, may be null
        expected - the expected result.
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitRemoveEndIgnoreCaseNotEquals

        default boolean waitRemoveEndIgnoreCaseNotEquals​(java.lang.String remove,
                                                         java.lang.String expected)

        Wait for defined number of seconds until result of StringUtils.removeEndIgnoreCase(String, String) is NOT equals to expected value.

        Parameters:
        remove - the String to search for (case insensitive) and remove, may be null
        expected - the expected result.
        Returns:
        true if wait operation succeed otherwise return false
      • waitRemoveEndIgnoreCaseNotEquals

        default boolean waitRemoveEndIgnoreCaseNotEquals​(java.lang.String remove,
                                                         java.lang.String expected,
                                                         int waitInSeconds)

        Wait for defined number of seconds until result of StringUtils.removeEndIgnoreCase(String, String) is NOT equals to expected value.

        Parameters:
        remove - the String to search for (case insensitive) and remove, may be null
        expected - the expected result.
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitRemoveEndIgnoreCaseNotEquals

        default boolean waitRemoveEndIgnoreCaseNotEquals​(java.lang.String remove,
                                                         java.lang.String expected,
                                                         int waitInSeconds,
                                                         int intervalInMilliSeconds)

        Wait for defined number of seconds until result of StringUtils.removeEndIgnoreCase(String, String) is NOT equals to expected value.

        Parameters:
        remove - the String to search for (case insensitive) and remove, may be null
        expected - the expected result.
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitRemoveEndNotEquals

        default boolean waitRemoveEndNotEquals​(java.lang.String remove,
                                               java.lang.String expected)

        Wait for defined number of seconds until result of StringUtils.removeEnd(String, String) is NOT equals to expected value.

        Parameters:
        remove - the String to search for and remove, may be null
        expected - the expected result.
        Returns:
        true if wait operation succeed otherwise return false
      • waitRemoveEndNotEquals

        default boolean waitRemoveEndNotEquals​(java.lang.String remove,
                                               java.lang.String expected,
                                               int waitInSeconds)

        Wait for defined number of seconds until result of StringUtils.removeEnd(String, String) is NOT equals to expected value.

        Parameters:
        remove - the String to search for and remove, may be null
        expected - the expected result.
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitRemoveEndNotEquals

        default boolean waitRemoveEndNotEquals​(java.lang.String remove,
                                               java.lang.String expected,
                                               int waitInSeconds,
                                               int intervalInMilliSeconds)

        Wait for defined number of seconds until result of StringUtils.removeEnd(String, String) is NOT equals to expected value.

        Parameters:
        remove - the String to search for and remove, may be null
        expected - the expected result.
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitRemoveEquals

        default boolean waitRemoveEquals​(java.lang.String remove,
                                         java.lang.String expected)

        Wait for defined number of seconds until result of StringUtils.remove(String, String) is equals to expected value.

        Parameters:
        remove - the String to search for and remove, may be null
        expected - the expected result.
        Returns:
        true if wait operation succeed otherwise return false
      • waitRemoveEquals

        default boolean waitRemoveEquals​(java.lang.String remove,
                                         java.lang.String expected,
                                         int waitInSeconds)

        Wait for defined number of seconds until result of StringUtils.remove(String, String) is equals to expected value.

        Parameters:
        remove - the String to search for and remove, may be null
        expected - the expected result.
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitRemoveEquals

        default boolean waitRemoveEquals​(java.lang.String remove,
                                         java.lang.String expected,
                                         int waitInSeconds,
                                         int intervalInMilliSeconds)

        Wait for defined number of seconds until result of StringUtils.remove(String, String) is equals to expected value.

        Parameters:
        remove - the String to search for and remove, may be null
        expected - the expected result.
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitRemoveIgnoreCaseEquals

        default boolean waitRemoveIgnoreCaseEquals​(java.lang.String remove,
                                                   java.lang.String expected)

        Wait for defined number of seconds until result of StringUtils.removeIgnoreCase(String, String) is equals to expected value.

        Parameters:
        remove - the String to search for (case insensitive) and remove, may be null
        expected - the expected result.
        Returns:
        true if wait operation succeed otherwise return false
      • waitRemoveIgnoreCaseEquals

        default boolean waitRemoveIgnoreCaseEquals​(java.lang.String remove,
                                                   java.lang.String expected,
                                                   int waitInSeconds)

        Wait for defined number of seconds until result of StringUtils.removeIgnoreCase(String, String) is equals to expected value.

        Parameters:
        remove - the String to search for (case insensitive) and remove, may be null
        expected - the expected result.
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitRemoveIgnoreCaseEquals

        default boolean waitRemoveIgnoreCaseEquals​(java.lang.String remove,
                                                   java.lang.String expected,
                                                   int waitInSeconds,
                                                   int intervalInMilliSeconds)

        Wait for defined number of seconds until result of StringUtils.removeIgnoreCase(String, String) is equals to expected value.

        Parameters:
        remove - the String to search for (case insensitive) and remove, may be null
        expected - the expected result.
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitRemoveIgnoreCaseNotEquals

        default boolean waitRemoveIgnoreCaseNotEquals​(java.lang.String remove,
                                                      java.lang.String expected)

        Wait for defined number of seconds until result of StringUtils.removeIgnoreCase(String, String) is NOT equals to expected value.

        Parameters:
        remove - the String to search for (case insensitive) and remove, may be null
        expected - the expected result.
        Returns:
        true if wait operation succeed otherwise return false
      • waitRemoveIgnoreCaseNotEquals

        default boolean waitRemoveIgnoreCaseNotEquals​(java.lang.String remove,
                                                      java.lang.String expected,
                                                      int waitInSeconds)

        Wait for defined number of seconds until result of StringUtils.removeIgnoreCase(String, String) is NOT equals to expected value.

        Parameters:
        remove - the String to search for (case insensitive) and remove, may be null
        expected - the expected result.
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitRemoveIgnoreCaseNotEquals

        default boolean waitRemoveIgnoreCaseNotEquals​(java.lang.String remove,
                                                      java.lang.String expected,
                                                      int waitInSeconds,
                                                      int intervalInMilliSeconds)

        Wait for defined number of seconds until result of StringUtils.removeIgnoreCase(String, String) is NOT equals to expected value.

        Parameters:
        remove - the String to search for (case insensitive) and remove, may be null
        expected - the expected result.
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitRemoveNotEquals

        default boolean waitRemoveNotEquals​(java.lang.String remove,
                                            java.lang.String expected)

        Wait for defined number of seconds until result of StringUtils.remove(String, String) is NOT equals to expected value.

        Parameters:
        remove - the String to search for and remove, may be null
        expected - the expected result.
        Returns:
        true if wait operation succeed otherwise return false
      • waitRemoveNotEquals

        default boolean waitRemoveNotEquals​(java.lang.String remove,
                                            java.lang.String expected,
                                            int waitInSeconds)

        Wait for defined number of seconds until result of StringUtils.remove(String, String) is NOT equals to expected value.

        Parameters:
        remove - the String to search for and remove, may be null
        expected - the expected result.
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitRemoveNotEquals

        default boolean waitRemoveNotEquals​(java.lang.String remove,
                                            java.lang.String expected,
                                            int waitInSeconds,
                                            int intervalInMilliSeconds)

        Wait for defined number of seconds until result of StringUtils.remove(String, String) is NOT equals to expected value.

        Parameters:
        remove - the String to search for and remove, may be null
        expected - the expected result.
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitRemoveStartEquals

        default boolean waitRemoveStartEquals​(java.lang.String remove,
                                              java.lang.String expected)

        Wait for defined number of seconds until result of StringUtils.removeStart(String, String) is equals to expected value.

        Parameters:
        remove - the String to search for and remove, may be null
        expected - the expected result.
        Returns:
        true if wait operation succeed otherwise return false
      • waitRemoveStartEquals

        default boolean waitRemoveStartEquals​(java.lang.String remove,
                                              java.lang.String expected,
                                              int waitInSeconds)

        Wait for defined number of seconds until result of StringUtils.removeStart(String, String) is equals to expected value.

        Parameters:
        remove - the String to search for and remove, may be null
        expected - the expected result.
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitRemoveStartEquals

        default boolean waitRemoveStartEquals​(java.lang.String remove,
                                              java.lang.String expected,
                                              int waitInSeconds,
                                              int intervalInMilliSeconds)

        Wait for defined number of seconds until result of StringUtils.removeStart(String, String) is equals to expected value.

        Parameters:
        remove - the String to search for and remove, may be null
        expected - the expected result.
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitRemoveStartIgnoreCaseEquals

        default boolean waitRemoveStartIgnoreCaseEquals​(java.lang.String remove,
                                                        java.lang.String expected)

        Wait for defined number of seconds until result of StringUtils.removeStartIgnoreCase(String, String) is equals to expected value.

        Parameters:
        remove - the String to search for (case insensitive) and remove, may be null
        expected - the expected result.
        Returns:
        true if wait operation succeed otherwise return false
      • waitRemoveStartIgnoreCaseEquals

        default boolean waitRemoveStartIgnoreCaseEquals​(java.lang.String remove,
                                                        java.lang.String expected,
                                                        int waitInSeconds)

        Wait for defined number of seconds until result of StringUtils.removeStartIgnoreCase(String, String) is equals to expected value.

        Parameters:
        remove - the String to search for (case insensitive) and remove, may be null
        expected - the expected result.
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitRemoveStartIgnoreCaseEquals

        default boolean waitRemoveStartIgnoreCaseEquals​(java.lang.String remove,
                                                        java.lang.String expected,
                                                        int waitInSeconds,
                                                        int intervalInMilliSeconds)

        Wait for defined number of seconds until result of StringUtils.removeStartIgnoreCase(String, String) is equals to expected value.

        Parameters:
        remove - the String to search for (case insensitive) and remove, may be null
        expected - the expected result.
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitRemoveStartIgnoreCaseNotEquals

        default boolean waitRemoveStartIgnoreCaseNotEquals​(java.lang.String remove,
                                                           java.lang.String expected)

        Wait for defined number of seconds until result of StringUtils.removeStartIgnoreCase(String, String) is NOT equals to expected value.

        Parameters:
        remove - the String to search for (case insensitive) and remove, may be null
        expected - the expected result.
        Returns:
        true if wait operation succeed otherwise return false
      • waitRemoveStartIgnoreCaseNotEquals

        default boolean waitRemoveStartIgnoreCaseNotEquals​(java.lang.String remove,
                                                           java.lang.String expected,
                                                           int waitInSeconds)

        Wait for defined number of seconds until result of StringUtils.removeStartIgnoreCase(String, String) is NOT equals to expected value.

        Parameters:
        remove - the String to search for (case insensitive) and remove, may be null
        expected - the expected result.
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitRemoveStartIgnoreCaseNotEquals

        default boolean waitRemoveStartIgnoreCaseNotEquals​(java.lang.String remove,
                                                           java.lang.String expected,
                                                           int waitInSeconds,
                                                           int intervalInMilliSeconds)

        Wait for defined number of seconds until result of StringUtils.removeStartIgnoreCase(String, String) is NOT equals to expected value.

        Parameters:
        remove - the String to search for (case insensitive) and remove, may be null
        expected - the expected result.
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitRemoveStartNotEquals

        default boolean waitRemoveStartNotEquals​(java.lang.String remove,
                                                 java.lang.String expected)

        Wait for defined number of seconds until result of StringUtils.removeStart(String, String) is NOT equals to expected value.

        Parameters:
        remove - the String to search for and remove, may be null
        expected - the expected result.
        Returns:
        true if wait operation succeed otherwise return false
      • waitRemoveStartNotEquals

        default boolean waitRemoveStartNotEquals​(java.lang.String remove,
                                                 java.lang.String expected,
                                                 int waitInSeconds)

        Wait for defined number of seconds until result of StringUtils.removeStart(String, String) is NOT equals to expected value.

        Parameters:
        remove - the String to search for and remove, may be null
        expected - the expected result.
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitRemoveStartNotEquals

        default boolean waitRemoveStartNotEquals​(java.lang.String remove,
                                                 java.lang.String expected,
                                                 int waitInSeconds,
                                                 int intervalInMilliSeconds)

        Wait for defined number of seconds until result of StringUtils.removeStart(String, String) is NOT equals to expected value.

        Parameters:
        remove - the String to search for and remove, may be null
        expected - the expected result.
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitReplaceEquals

        default boolean waitReplaceEquals​(java.lang.String searchString,
                                          java.lang.String replacement,
                                          java.lang.String expected)

        Wait for defined number of seconds until result of StringUtils.replace(String, String, String) is equals to expected value.

        Parameters:
        searchString - the String to search for (case insensitive), may be null
        replacement - the String to replace it with, may be null
        expected - the expected result.
        Returns:
        true if wait operation succeed otherwise return false
      • waitReplaceEquals

        default boolean waitReplaceEquals​(java.lang.String searchString,
                                          java.lang.String replacement,
                                          java.lang.String expected,
                                          int waitInSeconds)

        Wait for defined number of seconds until result of StringUtils.replace(String, String, String) is equals to expected value.

        Parameters:
        searchString - the String to search for (case insensitive), may be null
        replacement - the String to replace it with, may be null
        expected - the expected result.
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitReplaceEquals

        default boolean waitReplaceEquals​(java.lang.String searchString,
                                          java.lang.String replacement,
                                          java.lang.String expected,
                                          int waitInSeconds,
                                          int intervalInMilliSeconds)

        Wait for defined number of seconds until result of StringUtils.replace(String, String, String) is equals to expected value.

        Parameters:
        searchString - the String to search for (case insensitive), may be null
        replacement - the String to replace it with, may be null
        expected - the expected result.
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitReplaceIgnoreCaseEquals

        default boolean waitReplaceIgnoreCaseEquals​(java.lang.String searchString,
                                                    java.lang.String replacement,
                                                    java.lang.String expected)

        Wait for defined number of seconds until result of StringUtils.replaceIgnoreCase(String, String, String) is equals to expected value.

        Parameters:
        searchString - the String to search for (case insensitive), may be null
        replacement - the String to replace it with, may be null
        expected - the expected result.
        Returns:
        true if wait operation succeed otherwise return false
      • waitReplaceIgnoreCaseEquals

        default boolean waitReplaceIgnoreCaseEquals​(java.lang.String searchString,
                                                    java.lang.String replacement,
                                                    java.lang.String expected,
                                                    int waitInSeconds)

        Wait for defined number of seconds until result of StringUtils.replaceIgnoreCase(String, String, String) is equals to expected value.

        Parameters:
        searchString - the String to search for (case insensitive), may be null
        replacement - the String to replace it with, may be null
        expected - the expected result.
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitReplaceIgnoreCaseEquals

        default boolean waitReplaceIgnoreCaseEquals​(java.lang.String searchString,
                                                    java.lang.String replacement,
                                                    java.lang.String expected,
                                                    int waitInSeconds,
                                                    int intervalInMilliSeconds)

        Wait for defined number of seconds until result of StringUtils.replaceIgnoreCase(String, String, String) is equals to expected value.

        Parameters:
        searchString - the String to search for (case insensitive), may be null
        replacement - the String to replace it with, may be null
        expected - the expected result.
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitReplaceIgnoreCaseNotEquals

        default boolean waitReplaceIgnoreCaseNotEquals​(java.lang.String searchString,
                                                       java.lang.String replacement,
                                                       java.lang.String expected,
                                                       int waitInSeconds)

        Wait for defined number of seconds until result of StringUtils.replaceIgnoreCase(String, String, String) is NOT equals to expected value.

        Parameters:
        searchString - the String to search for (case insensitive), may be null
        replacement - the String to replace it with, may be null
        expected - the expected result.
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitReplaceIgnoreCaseNotEquals

        default boolean waitReplaceIgnoreCaseNotEquals​(java.lang.String searchString,
                                                       java.lang.String replacement,
                                                       java.lang.String expected)

        Wait for defined number of seconds until result of StringUtils.replaceIgnoreCase(String, String, String) is NOT equals to expected value.

        Parameters:
        searchString - the String to search for (case insensitive), may be null
        replacement - the String to replace it with, may be null
        expected - the expected result.
        Returns:
        true if wait operation succeed otherwise return false
      • waitReplaceIgnoreCaseNotEquals

        default boolean waitReplaceIgnoreCaseNotEquals​(java.lang.String searchString,
                                                       java.lang.String replacement,
                                                       java.lang.String expected,
                                                       int waitInSeconds,
                                                       int intervalInMilliSeconds)

        Wait for defined number of seconds until result of StringUtils.replaceIgnoreCase(String, String, String) is NOT equals to expected value.

        Parameters:
        searchString - the String to search for (case insensitive), may be null
        replacement - the String to replace it with, may be null
        expected - the expected result.
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitReplaceNotEquals

        default boolean waitReplaceNotEquals​(java.lang.String searchString,
                                             java.lang.String replacement,
                                             java.lang.String expected)

        Wait for defined number of seconds until result of StringUtils.replace(String, String, String) is NOT equals to expected value.

        Parameters:
        searchString - the String to search for (case insensitive), may be null
        replacement - the String to replace it with, may be null
        expected - the expected result.
        Returns:
        true if wait operation succeed otherwise return false
      • waitReplaceNotEquals

        default boolean waitReplaceNotEquals​(java.lang.String searchString,
                                             java.lang.String replacement,
                                             java.lang.String expected,
                                             int waitInSeconds)

        Wait for defined number of seconds until result of StringUtils.replace(String, String, String) is NOT equals to expected value.

        Parameters:
        searchString - the String to search for (case insensitive), may be null
        replacement - the String to replace it with, may be null
        expected - the expected result.
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitReplaceNotEquals

        default boolean waitReplaceNotEquals​(java.lang.String searchString,
                                             java.lang.String replacement,
                                             java.lang.String expected,
                                             int waitInSeconds,
                                             int intervalInMilliSeconds)

        Wait for defined number of seconds until result of StringUtils.replace(String, String, String) is NOT equals to expected value.

        Parameters:
        searchString - the String to search for (case insensitive), may be null
        replacement - the String to replace it with, may be null
        expected - the expected result.
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitReplaceOnceEquals

        default boolean waitReplaceOnceEquals​(java.lang.String searchString,
                                              java.lang.String replacement,
                                              java.lang.String expected)

        Wait for defined number of seconds until result of StringUtils.replaceOnce(String, String, String) is equals to expected value.

        Parameters:
        searchString - the String to search for, may be null
        replacement - the String to replace with, may be null
        expected - the expected result.
        Returns:
        true if wait operation succeed otherwise return false
      • waitReplaceOnceEquals

        default boolean waitReplaceOnceEquals​(java.lang.String searchString,
                                              java.lang.String replacement,
                                              java.lang.String expected,
                                              int waitInSeconds)

        Wait for defined number of seconds until result of StringUtils.replaceOnce(String, String, String) is equals to expected value.

        Parameters:
        searchString - the String to search for, may be null
        replacement - the String to replace with, may be null
        expected - the expected result.
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitReplaceOnceEquals

        default boolean waitReplaceOnceEquals​(java.lang.String searchString,
                                              java.lang.String replacement,
                                              java.lang.String expected,
                                              int waitInSeconds,
                                              int intervalInMilliSeconds)

        Wait for defined number of seconds until result of StringUtils.replaceOnce(String, String, String) is equals to expected value.

        Parameters:
        searchString - the String to search for, may be null
        replacement - the String to replace with, may be null
        expected - the expected result.
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitReplaceOnceIgnoreCaseEquals

        default boolean waitReplaceOnceIgnoreCaseEquals​(java.lang.String searchString,
                                                        java.lang.String replacement,
                                                        java.lang.String expected)

        Wait for defined number of seconds until result of StringUtils.replaceOnceIgnoreCase(String, String, String) is equals to expected value.

        Parameters:
        searchString - the String to search for (case insensitive), may be null
        replacement - the String to replace with, may be null
        expected - the expected result.
        Returns:
        true if wait operation succeed otherwise return false
      • waitReplaceOnceIgnoreCaseEquals

        default boolean waitReplaceOnceIgnoreCaseEquals​(java.lang.String searchString,
                                                        java.lang.String replacement,
                                                        java.lang.String expected,
                                                        int waitInSeconds)

        Wait for defined number of seconds until result of StringUtils.replaceOnceIgnoreCase(String, String, String) is equals to expected value.

        Parameters:
        searchString - the String to search for (case insensitive), may be null
        replacement - the String to replace with, may be null
        expected - the expected result.
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitReplaceOnceIgnoreCaseEquals

        default boolean waitReplaceOnceIgnoreCaseEquals​(java.lang.String searchString,
                                                        java.lang.String replacement,
                                                        java.lang.String expected,
                                                        int waitInSeconds,
                                                        int intervalInMilliSeconds)

        Wait for defined number of seconds until result of StringUtils.replaceOnceIgnoreCase(String, String, String) is equals to expected value.

        Parameters:
        searchString - the String to search for (case insensitive), may be null
        replacement - the String to replace with, may be null
        expected - the expected result.
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitReplaceOnceIgnoreCaseNotEquals

        default boolean waitReplaceOnceIgnoreCaseNotEquals​(java.lang.String searchString,
                                                           java.lang.String replacement,
                                                           java.lang.String expected)

        Wait for defined number of seconds until result of StringUtils.replaceOnceIgnoreCase(String, String, String) is NOT equals to expected value.

        Parameters:
        searchString - the String to search for (case insensitive), may be null
        replacement - the String to replace with, may be null
        expected - the expected result.
        Returns:
        true if wait operation succeed otherwise return false
      • waitReplaceOnceIgnoreCaseNotEquals

        default boolean waitReplaceOnceIgnoreCaseNotEquals​(java.lang.String searchString,
                                                           java.lang.String replacement,
                                                           java.lang.String expected,
                                                           int waitInSeconds)

        Wait for defined number of seconds until result of StringUtils.replaceOnceIgnoreCase(String, String, String) is NOT equals to expected value.

        Parameters:
        searchString - the String to search for (case insensitive), may be null
        replacement - the String to replace with, may be null
        expected - the expected result.
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitReplaceOnceIgnoreCaseNotEquals

        default boolean waitReplaceOnceIgnoreCaseNotEquals​(java.lang.String searchString,
                                                           java.lang.String replacement,
                                                           java.lang.String expected,
                                                           int waitInSeconds,
                                                           int intervalInMilliSeconds)

        Wait for defined number of seconds until result of StringUtils.replaceOnceIgnoreCase(String, String, String) is NOT equals to expected value.

        Parameters:
        searchString - the String to search for (case insensitive), may be null
        replacement - the String to replace with, may be null
        expected - the expected result.
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitReplaceOnceNotEquals

        default boolean waitReplaceOnceNotEquals​(java.lang.String searchString,
                                                 java.lang.String replacement,
                                                 java.lang.String expected)

        Wait for defined number of seconds until result of StringUtils.replaceOnce(String, String, String) is NOT equals to expected value.

        Parameters:
        searchString - the String to search for, may be null
        replacement - the String to replace with, may be null
        expected - the expected result.
        Returns:
        true if wait operation succeed otherwise return false
      • waitReplaceOnceNotEquals

        default boolean waitReplaceOnceNotEquals​(java.lang.String searchString,
                                                 java.lang.String replacement,
                                                 java.lang.String expected,
                                                 int waitInSeconds)

        Wait for defined number of seconds until result of StringUtils.replaceOnce(String, String, String) is NOT equals to expected value.

        Parameters:
        searchString - the String to search for, may be null
        replacement - the String to replace with, may be null
        expected - the expected result.
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitReplaceOnceNotEquals

        default boolean waitReplaceOnceNotEquals​(java.lang.String searchString,
                                                 java.lang.String replacement,
                                                 java.lang.String expected,
                                                 int waitInSeconds,
                                                 int intervalInMilliSeconds)

        Wait for defined number of seconds until result of StringUtils.replaceOnce(String, String, String) is NOT equals to expected value.

        Parameters:
        searchString - the String to search for, may be null
        replacement - the String to replace with, may be null
        expected - the expected result.
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitReverseEquals

        default boolean waitReverseEquals​(java.lang.String expected)

        Wait for defined number of seconds until result of StringUtils.reverse(String) is equals to expected value.

        Parameters:
        expected - the expected result.
        Returns:
        true if wait operation succeed otherwise return false
      • waitReverseEquals

        default boolean waitReverseEquals​(java.lang.String expected,
                                          int waitInSeconds)

        Wait for defined number of seconds until result of StringUtils.reverse(String) is equals to expected value.

        Parameters:
        expected - the expected result.
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitReverseEquals

        default boolean waitReverseEquals​(java.lang.String expected,
                                          int waitInSeconds,
                                          int intervalInMilliSeconds)

        Wait for defined number of seconds until result of StringUtils.reverse(String) is equals to expected value.

        Parameters:
        expected - the expected result.
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitReverseNotEquals

        default boolean waitReverseNotEquals​(java.lang.String expected)

        Wait for defined number of seconds until result of StringUtils.reverse(String) is NOT equals to expected value.

        Parameters:
        expected - the expected result.
        Returns:
        caller CVerificationBuilder so we can do chain alls
      • waitReverseNotEquals

        default boolean waitReverseNotEquals​(java.lang.String expected,
                                             int waitInSeconds)

        Wait for defined number of seconds until result of StringUtils.reverse(String) is NOT equals to expected value.

        Parameters:
        expected - the expected result.
        waitInSeconds - maximum wait time.
        Returns:
        caller CVerificationBuilder so we can do chain alls
      • waitReverseNotEquals

        default boolean waitReverseNotEquals​(java.lang.String expected,
                                             int waitInSeconds,
                                             int intervalInMilliSeconds)

        Wait for defined number of seconds until result of StringUtils.reverse(String) is NOT equals to expected value.

        Parameters:
        expected - the expected result.
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        caller CVerificationBuilder so we can do chain alls
      • waitRightPadEquals

        default boolean waitRightPadEquals​(int size,
                                           java.lang.String padStr,
                                           java.lang.String expected)

        Wait for defined number of seconds until result of StringUtils.rightPad(String, int, String) is equals to expected value.

        Parameters:
        size - the size to pad to
        padStr - the String to pad with, null or empty treated as single space
        expected - the expected result.
        Returns:
        true if wait operation succeed otherwise return false
      • waitRightPadEquals

        default boolean waitRightPadEquals​(int size,
                                           java.lang.String padStr,
                                           java.lang.String expected,
                                           int waitInSeconds)

        Wait for defined number of seconds until result of StringUtils.rightPad(String, int, String) is equals to expected value.

        Parameters:
        size - the size to pad to
        padStr - the String to pad with, null or empty treated as single space
        expected - the expected result.
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitRightPadEquals

        default boolean waitRightPadEquals​(int size,
                                           java.lang.String padStr,
                                           java.lang.String expected,
                                           int waitInSeconds,
                                           int intervalInMilliSeconds)

        Wait for defined number of seconds until result of StringUtils.rightPad(String, int, String) is equals to expected value.

        Parameters:
        size - the size to pad to
        padStr - the String to pad with, null or empty treated as single space
        expected - the expected result.
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitRightPadNotEquals

        default boolean waitRightPadNotEquals​(int size,
                                              java.lang.String padStr,
                                              java.lang.String expected)

        Wait for defined number of seconds until result of StringUtils.rightPad(String, int, String) is NOT equals to expected value.

        Parameters:
        size - the size to pad to
        padStr - the String to pad with, null or empty treated as single space
        expected - the expected result.
        Returns:
        true if wait operation succeed otherwise return false
      • waitRightPadNotEquals

        default boolean waitRightPadNotEquals​(int size,
                                              java.lang.String padStr,
                                              java.lang.String expected,
                                              int waitInSeconds)

        Wait for defined number of seconds until result of StringUtils.rightPad(String, int, String) is NOT equals to expected value.

        Parameters:
        size - the size to pad to
        padStr - the String to pad with, null or empty treated as single space
        expected - the expected result.
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitRightPadNotEquals

        default boolean waitRightPadNotEquals​(int size,
                                              java.lang.String padStr,
                                              java.lang.String expected,
                                              int waitInSeconds,
                                              int intervalInMilliSeconds)

        Wait for defined number of seconds until result of StringUtils.rightPad(String, int, String) is NOT equals to expected value.

        Parameters:
        size - the size to pad to
        padStr - the String to pad with, null or empty treated as single space
        expected - the expected result.
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitRightValueEquals

        default boolean waitRightValueEquals​(int len,
                                             java.lang.String expected)

        Wait for defined number of seconds until result of StringUtils.right(String, int) equals to expected value.

        Parameters:
        expected - the expected result.
        len - the length of the required String
        Returns:
        true if wait operation succeed otherwise return false
      • waitRightValueEquals

        default boolean waitRightValueEquals​(int len,
                                             java.lang.String expected,
                                             int waitInSeconds)

        Wait for defined number of seconds until result of StringUtils.right(String, int) equals to expected value.

        Parameters:
        expected - the expected result.
        len - the length of the required String
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitRightValueEquals

        default boolean waitRightValueEquals​(int len,
                                             java.lang.String expected,
                                             int waitInSeconds,
                                             int intervalInMilliSeconds)

        Wait for defined number of seconds until result of StringUtils.right(String, int) equals to expected value.

        Parameters:
        expected - the expected result.
        len - the length of the required String
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitRightValueNotEquals

        default boolean waitRightValueNotEquals​(int len,
                                                java.lang.String expected)

        Wait for defined number of seconds until result of StringUtils.right(String, int) NOT equals to expected value.

        Parameters:
        expected - the expected result.
        len - the length of the required String
        Returns:
        true if wait operation succeed otherwise return false
      • waitRightValueNotEquals

        default boolean waitRightValueNotEquals​(int len,
                                                java.lang.String expected,
                                                int waitInSeconds)

        Wait for defined number of seconds until result of StringUtils.right(String, int) NOT equals to expected value.

        Parameters:
        expected - the expected result.
        len - the length of the required String
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitRightValueNotEquals

        default boolean waitRightValueNotEquals​(int len,
                                                java.lang.String expected,
                                                int waitInSeconds,
                                                int intervalInMilliSeconds)

        Wait for defined number of seconds until result of StringUtils.right(String, int) NOT equals to expected value.

        Parameters:
        expected - the expected result.
        len - the length of the required String
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitStartsWith

        default boolean waitStartsWith​(java.lang.String expected)

        Wait for defined number of seconds until result of StringUtils.startsWith(CharSequence, CharSequence) is true

        Parameters:
        expected - the expected result.
        Returns:
        true if wait operation succeed otherwise return false
      • waitStartsWith

        default boolean waitStartsWith​(java.lang.String expected,
                                       int waitInSeconds)

        Wait for defined number of seconds until result of StringUtils.startsWith(CharSequence, CharSequence) is true

        Parameters:
        expected - the expected result.
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitStartsWith

        default boolean waitStartsWith​(java.lang.String expected,
                                       int waitInSeconds,
                                       int intervalInMilliSeconds)

        Wait for defined number of seconds until result of StringUtils.startsWith(CharSequence, CharSequence) is true

        Parameters:
        expected - the expected result.
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitStartsWithAny

        default boolean waitStartsWithAny​(java.util.List<java.lang.String> searchInputs)

        Wait for defined number of seconds until result of StringUtils.startsWithAny(CharSequence, CharSequence...) is true

        Parameters:
        searchInputs - the case-sensitive CharSequence prefixes, may be empty or contain null
        Returns:
        true if wait operation succeed otherwise return false
      • waitStartsWithAny

        default boolean waitStartsWithAny​(java.util.List<java.lang.String> searchInputs,
                                          int waitInSeconds)

        Wait for defined number of seconds until result of StringUtils.startsWithAny(CharSequence, CharSequence...) is true

        Parameters:
        searchInputs - the case-sensitive CharSequence prefixes, may be empty or contain null
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitStartsWithAny

        default boolean waitStartsWithAny​(java.util.List<java.lang.String> searchInputs,
                                          int waitInSeconds,
                                          int intervalInMilliSeconds)

        Wait for defined number of seconds until result of StringUtils.startsWithAny(CharSequence, CharSequence...) is true

        Parameters:
        searchInputs - the case-sensitive CharSequence prefixes, may be empty or contain null
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitStartsWithIgnoreCase

        default boolean waitStartsWithIgnoreCase​(java.lang.String expected)

        Wait for defined number of seconds until result of StringUtils.startsWithIgnoreCase(CharSequence, CharSequence) is true

        Parameters:
        expected - the expected result.
        Returns:
        true if wait operation succeed otherwise return false
      • waitStartsWithIgnoreCase

        default boolean waitStartsWithIgnoreCase​(java.lang.String expected,
                                                 int waitInSeconds)

        Wait for defined number of seconds until result of StringUtils.startsWithIgnoreCase(CharSequence, CharSequence) is true

        Parameters:
        expected - the expected result.
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitStartsWithIgnoreCase

        default boolean waitStartsWithIgnoreCase​(java.lang.String expected,
                                                 int waitInSeconds,
                                                 int intervalInMilliSeconds)

        Wait for defined number of seconds until result of StringUtils.startsWithIgnoreCase(CharSequence, CharSequence) is true

        Parameters:
        expected - the expected result.
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitStartsWithNone

        default boolean waitStartsWithNone​(java.util.List<java.lang.String> searchInputs)

        Wait for defined number of seconds until result of StringUtils.startsWithAny(CharSequence, CharSequence...) is false

        Parameters:
        searchInputs - the case-sensitive CharSequence prefixes, may be empty or contain null
        Returns:
        true if wait operation succeed otherwise return false
      • waitStartsWithNone

        default boolean waitStartsWithNone​(java.util.List<java.lang.String> searchInputs,
                                           int waitInSeconds)

        Wait for defined number of seconds until result of StringUtils.startsWithAny(CharSequence, CharSequence...) is false

        Parameters:
        searchInputs - the case-sensitive CharSequence prefixes, may be empty or contain null
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitStartsWithNone

        default boolean waitStartsWithNone​(java.util.List<java.lang.String> searchInputs,
                                           int waitInSeconds,
                                           int intervalInMilliSeconds)

        Wait for defined number of seconds until result of StringUtils.startsWithAny(CharSequence, CharSequence...) is false

        Parameters:
        searchInputs - the case-sensitive CharSequence prefixes, may be empty or contain null
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitStripedEndValue

        default boolean waitStripedEndValue​(java.lang.String stripChars,
                                            java.lang.String expected)

        Wait for defined number of seconds till if StringUtils.stripEnd(String, String) value equals the expected value.

        Parameters:
        stripChars - the characters to remove, null treated as whitespace
        expected - the expected result.
        Returns:
        true if wait operation succeed otherwise return false
      • waitStripedEndValue

        default boolean waitStripedEndValue​(java.lang.String stripChars,
                                            java.lang.String expected,
                                            int waitInSeconds)

        Wait for defined number of seconds till if StringUtils.stripEnd(String, String) value equals the expected value.

        Parameters:
        stripChars - the characters to remove, null treated as whitespace
        expected - the expected result.
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitStripedEndValue

        default boolean waitStripedEndValue​(java.lang.String stripChars,
                                            java.lang.String expected,
                                            int waitInSeconds,
                                            int intervalInMilliSeconds)

        Wait for defined number of seconds till if StringUtils.stripEnd(String, String) value equals the expected value.

        Parameters:
        stripChars - the characters to remove, null treated as whitespace
        expected - the expected result.
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitStripedEndValueNot

        default boolean waitStripedEndValueNot​(java.lang.String stripChars,
                                               java.lang.String expected)

        Wait for defined number of seconds till if StringUtils.stripEnd(String, String) value NOT equals the expected value.

        Parameters:
        stripChars - the characters to remove, null treated as whitespace
        expected - the expected result.
        Returns:
        true if wait operation succeed otherwise return false
      • waitStripedEndValueNot

        default boolean waitStripedEndValueNot​(java.lang.String stripChars,
                                               java.lang.String expected,
                                               int waitInSeconds)

        Wait for defined number of seconds till if StringUtils.stripEnd(String, String) value NOT equals the expected value.

        Parameters:
        stripChars - the characters to remove, null treated as whitespace
        expected - the expected result.
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitStripedEndValueNot

        default boolean waitStripedEndValueNot​(java.lang.String stripChars,
                                               java.lang.String expected,
                                               int waitInSeconds,
                                               int intervalInMilliSeconds)

        Wait for defined number of seconds till if StringUtils.stripEnd(String, String) value NOT equals the expected value.

        Parameters:
        stripChars - the characters to remove, null treated as whitespace
        expected - the expected result.
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitStripedStartValue

        default boolean waitStripedStartValue​(java.lang.String stripChars,
                                              java.lang.String expected)

        Wait for defined number of seconds till if StringUtils.stripStart(String, String) value equals the expected value.

        Parameters:
        stripChars - the characters to remove, null treated as whitespace
        expected - the expected result.
        Returns:
        true if wait operation succeed otherwise return false
      • waitStripedStartValue

        default boolean waitStripedStartValue​(java.lang.String stripChars,
                                              java.lang.String expected,
                                              int waitInSeconds)

        Wait for defined number of seconds till if StringUtils.stripStart(String, String) value equals the expected value.

        Parameters:
        stripChars - the characters to remove, null treated as whitespace
        expected - the expected result.
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitStripedStartValue

        default boolean waitStripedStartValue​(java.lang.String stripChars,
                                              java.lang.String expected,
                                              int waitInSeconds,
                                              int intervalInMilliSeconds)

        Wait for defined number of seconds till if StringUtils.stripStart(String, String) value equals the expected value.

        Parameters:
        stripChars - the characters to remove, null treated as whitespace
        expected - the expected result.
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitStripedStartValueNot

        default boolean waitStripedStartValueNot​(java.lang.String stripChars,
                                                 java.lang.String expected)

        Wait for defined number of seconds till if StringUtils.stripStart(String, String) value NOT equals the expected value.

        Parameters:
        stripChars - the characters to remove, null treated as whitespace
        expected - the expected result.
        Returns:
        true if wait operation succeed otherwise return false
      • waitStripedStartValueNot

        default boolean waitStripedStartValueNot​(java.lang.String stripChars,
                                                 java.lang.String expected,
                                                 int waitInSeconds)

        Wait for defined number of seconds till if StringUtils.stripStart(String, String) value NOT equals the expected value.

        Parameters:
        stripChars - the characters to remove, null treated as whitespace
        expected - the expected result.
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitStripedStartValueNot

        default boolean waitStripedStartValueNot​(java.lang.String stripChars,
                                                 java.lang.String expected,
                                                 int waitInSeconds,
                                                 int intervalInMilliSeconds)

        Wait for defined number of seconds till if StringUtils.stripStart(String, String) value NOT equals the expected value.

        Parameters:
        stripChars - the characters to remove, null treated as whitespace
        expected - the expected result.
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitStripedValue

        default boolean waitStripedValue​(java.lang.String stripChars,
                                         java.lang.String expected)

        Wait for defined number of seconds till if StringUtils.strip(String) value equals the expected value.

        Parameters:
        stripChars - the characters to remove, null treated as whitespace
        expected - the expected result.
        Returns:
        true if wait operation succeed otherwise return false
      • waitStripedValue

        default boolean waitStripedValue​(java.lang.String stripChars,
                                         java.lang.String expected,
                                         int waitInSeconds)

        Wait for defined number of seconds till if StringUtils.strip(String) value equals the expected value.

        Parameters:
        stripChars - the characters to remove, null treated as whitespace
        expected - the expected result.
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitStripedValue

        default boolean waitStripedValue​(java.lang.String stripChars,
                                         java.lang.String expected,
                                         int waitInSeconds,
                                         int intervalInMilliSeconds)

        Wait for defined number of seconds till if StringUtils.strip(String) value equals the expected value.

        Parameters:
        stripChars - the characters to remove, null treated as whitespace
        expected - the expected result.
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitStripedValueNot

        default boolean waitStripedValueNot​(java.lang.String stripChars,
                                            java.lang.String expected)

        Wait for defined number of seconds till if StringUtils.strip(String) value NOT equals the expected value.

        Parameters:
        stripChars - the characters to remove, null treated as whitespace
        expected - the expected result.
        Returns:
        true if wait operation succeed otherwise return false
      • waitStripedValueNot

        default boolean waitStripedValueNot​(java.lang.String stripChars,
                                            java.lang.String expected,
                                            int waitInSeconds)

        Wait for defined number of seconds till if StringUtils.strip(String) value NOT equals the expected value.

        Parameters:
        stripChars - the characters to remove, null treated as whitespace
        expected - the expected result.
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitStripedValueNot

        default boolean waitStripedValueNot​(java.lang.String stripChars,
                                            java.lang.String expected,
                                            int waitInSeconds,
                                            int intervalInMilliSeconds)

        Wait for defined number of seconds till if StringUtils.strip(String) value NOT equals the expected value.

        Parameters:
        stripChars - the characters to remove, null treated as whitespace
        expected - the expected result.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitSubstringAfterEquals

        default boolean waitSubstringAfterEquals​(java.lang.String separator,
                                                 java.lang.String expected)

        Wait for defined number of seconds until result of StringUtils.substringAfter(String, String) equals to expected value.

        Parameters:
        expected - the expected result.
        separator - the String to search for, may be null
        Returns:
        true if wait operation succeed otherwise return false
      • waitSubstringAfterEquals

        default boolean waitSubstringAfterEquals​(java.lang.String separator,
                                                 java.lang.String expected,
                                                 int waitInSeconds)

        Wait for defined number of seconds until result of StringUtils.substringAfter(String, String) equals to expected value.

        Parameters:
        expected - the expected result.
        separator - the String to search for, may be null
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitSubstringAfterEquals

        default boolean waitSubstringAfterEquals​(java.lang.String separator,
                                                 java.lang.String expected,
                                                 int waitInSeconds,
                                                 int intervalInMilliSeconds)

        Wait for defined number of seconds until result of StringUtils.substringAfter(String, String) equals to expected value.

        Parameters:
        expected - the expected result.
        separator - the String to search for, may be null
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitSubstringAfterLastEquals

        default boolean waitSubstringAfterLastEquals​(java.lang.String separator,
                                                     java.lang.String expected)

        Wait for defined number of seconds until result of StringUtils.substringAfterLast(String, String) equals to expected value.

        Parameters:
        expected - the expected result.
        separator - the String to search for, may be null
        Returns:
        true if wait operation succeed otherwise return false
      • waitSubstringAfterLastEquals

        default boolean waitSubstringAfterLastEquals​(java.lang.String separator,
                                                     java.lang.String expected,
                                                     int waitInSeconds)

        Wait for defined number of seconds until result of StringUtils.substringAfterLast(String, String) equals to expected value.

        Parameters:
        expected - the expected result.
        separator - the String to search for, may be null
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitSubstringAfterLastEquals

        default boolean waitSubstringAfterLastEquals​(java.lang.String separator,
                                                     java.lang.String expected,
                                                     int waitInSeconds,
                                                     int intervalInMilliSeconds)

        Wait for defined number of seconds until result of StringUtils.substringAfterLast(String, String) equals to expected value.

        Parameters:
        expected - the expected result.
        separator - the String to search for, may be null
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitSubstringAfterLastNotEquals

        default boolean waitSubstringAfterLastNotEquals​(java.lang.String separator,
                                                        java.lang.String expected)

        Wait for defined number of seconds until result of StringUtils.substringAfterLast(String, String) NOT equals to expected value.

        Parameters:
        expected - the expected result.
        separator - the String to search for, may be null
        Returns:
        true if wait operation succeed otherwise return false
      • waitSubstringAfterLastNotEquals

        default boolean waitSubstringAfterLastNotEquals​(java.lang.String separator,
                                                        java.lang.String expected,
                                                        int waitInSeconds)

        Wait for defined number of seconds until result of StringUtils.substringAfterLast(String, String) NOT equals to expected value.

        Parameters:
        expected - the expected result.
        separator - the String to search for, may be null
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitSubstringAfterLastNotEquals

        default boolean waitSubstringAfterLastNotEquals​(java.lang.String separator,
                                                        java.lang.String expected,
                                                        int waitInSeconds,
                                                        int intervalInMilliSeconds)

        Wait for defined number of seconds until result of StringUtils.substringAfterLast(String, String) NOT equals to expected value.

        Parameters:
        expected - the expected result.
        separator - the String to search for, may be null
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitSubstringAfterNotEquals

        default boolean waitSubstringAfterNotEquals​(java.lang.String separator,
                                                    java.lang.String expected)

        Wait for defined number of seconds until result of StringUtils.substringAfter(String, String) NOT equals to expected value.

        Parameters:
        expected - the expected result.
        separator - the String to search for, may be null
        Returns:
        true if wait operation succeed otherwise return false
      • waitSubstringAfterNotEquals

        default boolean waitSubstringAfterNotEquals​(java.lang.String separator,
                                                    java.lang.String expected,
                                                    int waitInSeconds)

        Wait for defined number of seconds until result of StringUtils.substringAfter(String, String) NOT equals to expected value.

        Parameters:
        expected - the expected result.
        separator - the String to search for, may be null
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitSubstringAfterNotEquals

        default boolean waitSubstringAfterNotEquals​(java.lang.String separator,
                                                    java.lang.String expected,
                                                    int waitInSeconds,
                                                    int intervalInMilliSeconds)

        Wait for defined number of seconds until result of StringUtils.substringAfter(String, String) NOT equals to expected value.

        Parameters:
        expected - the expected result.
        separator - the String to search for, may be null
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitSubstringBeforeEquals

        default boolean waitSubstringBeforeEquals​(java.lang.String separator,
                                                  java.lang.String expected)

        Wait for defined number of seconds until result of StringUtils.substringBefore(String, String) equals to expected value.

        Parameters:
        expected - the expected result.
        separator - the String to search for, may be null
        Returns:
        true if wait operation succeed otherwise return false
      • waitSubstringBeforeEquals

        default boolean waitSubstringBeforeEquals​(java.lang.String separator,
                                                  java.lang.String expected,
                                                  int waitInSeconds)

        Wait for defined number of seconds until result of StringUtils.substringBefore(String, String) equals to expected value.

        Parameters:
        expected - the expected result.
        separator - the String to search for, may be null
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitSubstringBeforeEquals

        default boolean waitSubstringBeforeEquals​(java.lang.String separator,
                                                  java.lang.String expected,
                                                  int waitInSeconds,
                                                  int intervalInMilliSeconds)

        Wait for defined number of seconds until result of StringUtils.substringBefore(String, String) equals to expected value.

        Parameters:
        expected - the expected result.
        separator - the String to search for, may be null
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitSubstringBeforeLastEquals

        default boolean waitSubstringBeforeLastEquals​(java.lang.String separator,
                                                      java.lang.String expected)

        Wait for defined number of seconds until result of StringUtils.substringBeforeLast(String, String) equals to expected value.

        Parameters:
        expected - the expected result.
        separator - the String to search for, may be null
        Returns:
        true if wait operation succeed otherwise return false
      • waitSubstringBeforeLastEquals

        default boolean waitSubstringBeforeLastEquals​(java.lang.String separator,
                                                      java.lang.String expected,
                                                      int waitInSeconds)

        Wait for defined number of seconds until result of StringUtils.substringBeforeLast(String, String) equals to expected value.

        Parameters:
        expected - the expected result.
        separator - the String to search for, may be null
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitSubstringBeforeLastEquals

        default boolean waitSubstringBeforeLastEquals​(java.lang.String separator,
                                                      java.lang.String expected,
                                                      int waitInSeconds,
                                                      int intervalInMilliSeconds)

        Wait for defined number of seconds until result of StringUtils.substringBeforeLast(String, String) equals to expected value.

        Parameters:
        expected - the expected result.
        separator - the String to search for, may be null
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitSubstringBeforeLastNotEquals

        default boolean waitSubstringBeforeLastNotEquals​(java.lang.String separator,
                                                         java.lang.String expected)

        Wait for defined number of seconds until result of StringUtils.substringBeforeLast(String, String) NOT equals to expected value.

        Parameters:
        expected - the expected result.
        separator - the String to search for, may be null
        Returns:
        true if wait operation succeed otherwise return false
      • waitSubstringBeforeLastNotEquals

        default boolean waitSubstringBeforeLastNotEquals​(java.lang.String separator,
                                                         java.lang.String expected,
                                                         int waitInSeconds)

        Wait for defined number of seconds until result of StringUtils.substringBeforeLast(String, String) NOT equals to expected value.

        Parameters:
        expected - the expected result.
        separator - the String to search for, may be null
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitSubstringBeforeLastNotEquals

        default boolean waitSubstringBeforeLastNotEquals​(java.lang.String separator,
                                                         java.lang.String expected,
                                                         int waitInSeconds,
                                                         int intervalInMilliSeconds)

        Wait for defined number of seconds until result of StringUtils.substringBeforeLast(String, String) NOT equals to expected value.

        Parameters:
        expected - the expected result.
        separator - the String to search for, may be null
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitSubstringBeforeNotEquals

        default boolean waitSubstringBeforeNotEquals​(java.lang.String separator,
                                                     java.lang.String expected)

        Wait for defined number of seconds until result of StringUtils.substringBefore(String, String) NOT equals to expected value.

        Parameters:
        expected - the expected result.
        separator - the String to search for, may be null
        Returns:
        true if wait operation succeed otherwise return false
      • waitSubstringBeforeNotEquals

        default boolean waitSubstringBeforeNotEquals​(java.lang.String separator,
                                                     java.lang.String expected,
                                                     int waitInSeconds)

        Wait for defined number of seconds until result of StringUtils.substringBefore(String, String) NOT equals to expected value.

        Parameters:
        expected - the expected result.
        separator - the String to search for, may be null
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitSubstringBeforeNotEquals

        default boolean waitSubstringBeforeNotEquals​(java.lang.String separator,
                                                     java.lang.String expected,
                                                     int waitInSeconds,
                                                     int intervalInMilliSeconds)

        Wait for defined number of seconds until result of StringUtils.substringBefore(String, String) NOT equals to expected value.

        Parameters:
        expected - the expected result.
        separator - the String to search for, may be null
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitSubstringBetweenEquals

        default boolean waitSubstringBetweenEquals​(java.lang.String open,
                                                   java.lang.String close,
                                                   java.lang.String expected)

        Wait for defined number of seconds until result of StringUtils.substringBetween(String, String) equals to expected value.

        Parameters:
        expected - the expected result.
        open - the String identifying the start of the substring, empty returns null
        close - the String identifying the end of the substring, empty returns null
        Returns:
        true if wait operation succeed otherwise return false
      • waitSubstringBetweenEquals

        default boolean waitSubstringBetweenEquals​(java.lang.String open,
                                                   java.lang.String close,
                                                   java.lang.String expected,
                                                   int waitInSeconds)

        Wait for defined number of seconds until result of StringUtils.substringBetween(String, String) equals to expected value.

        Parameters:
        expected - the expected result.
        open - the String identifying the start of the substring, empty returns null
        close - the String identifying the end of the substring, empty returns null
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitSubstringBetweenEquals

        default boolean waitSubstringBetweenEquals​(java.lang.String open,
                                                   java.lang.String close,
                                                   java.lang.String expected,
                                                   int waitInSeconds,
                                                   int intervalInMilliSeconds)

        Wait for defined number of seconds until result of StringUtils.substringBetween(String, String) equals to expected value.

        Parameters:
        expected - the expected result.
        open - the String identifying the start of the substring, empty returns null
        close - the String identifying the end of the substring, empty returns null
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitSubstringBetweenNotEquals

        default boolean waitSubstringBetweenNotEquals​(java.lang.String open,
                                                      java.lang.String close,
                                                      java.lang.String expected)

        Wait for defined number of seconds until result of StringUtils.substringBetween(String, String) NOT equals to expected value.

        Parameters:
        expected - the expected result.
        open - the String identifying the start of the substring, empty returns null
        close - the String identifying the end of the substring, empty returns null
        Returns:
        true if wait operation succeed otherwise return false
      • waitSubstringBetweenNotEquals

        default boolean waitSubstringBetweenNotEquals​(java.lang.String open,
                                                      java.lang.String close,
                                                      java.lang.String expected,
                                                      int waitInSeconds)

        Wait for defined number of seconds until result of StringUtils.substringBetween(String, String) NOT equals to expected value.

        Parameters:
        expected - the expected result.
        open - the String identifying the start of the substring, empty returns null
        close - the String identifying the end of the substring, empty returns null
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitSubstringBetweenNotEquals

        default boolean waitSubstringBetweenNotEquals​(java.lang.String open,
                                                      java.lang.String close,
                                                      java.lang.String expected,
                                                      int waitInSeconds,
                                                      int intervalInMilliSeconds)

        Wait for defined number of seconds until result of StringUtils.substringBetween(String, String) NOT equals to expected value.

        Parameters:
        expected - the expected result.
        open - the String identifying the start of the substring, empty returns null
        close - the String identifying the end of the substring, empty returns null
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitSubstringEquals

        default boolean waitSubstringEquals​(int start,
                                            java.lang.String expected)

        Wait for defined number of seconds until result of StringUtils.substring(String, int) equals to expected value.

        Parameters:
        expected - the expected result.
        start - the position to start from, negative means count back from the end of the String
        Returns:
        true if wait operation succeed otherwise return false
      • waitSubstringEquals

        default boolean waitSubstringEquals​(int start,
                                            java.lang.String expected,
                                            int waitInSeconds)

        Wait for defined number of seconds until result of StringUtils.substring(String, int) equals to expected value.

        Parameters:
        expected - the expected result.
        start - the position to start from, negative means count back from the end of the String
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitSubstringEquals

        default boolean waitSubstringEquals​(int start,
                                            java.lang.String expected,
                                            int waitInSeconds,
                                            int intervalInMilliSeconds)

        Wait for defined number of seconds until result of StringUtils.substring(String, int) equals to expected value.

        Parameters:
        expected - the expected result.
        start - the position to start from, negative means count back from the end of the String
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitSubstringEquals

        default boolean waitSubstringEquals​(int start,
                                            int end,
                                            java.lang.String expected)

        Wait for defined number of seconds until result of StringUtils.substring(String, int, int) equals to expected value.

        Parameters:
        expected - the expected result.
        start - the position to start from, negative means count back from the end of the String
        end - the position to end at (exclusive), negative means count back from the end of the String
        Returns:
        true if wait operation succeed otherwise return false
      • waitSubstringEquals

        default boolean waitSubstringEquals​(int start,
                                            int end,
                                            java.lang.String expected,
                                            int waitInSeconds)

        Wait for defined number of seconds until result of StringUtils.substring(String, int, int) equals to expected value.

        Parameters:
        expected - the expected result.
        start - the position to start from, negative means count back from the end of the String
        end - the position to end at (exclusive), negative means count back from the end of the String
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitSubstringEquals

        default boolean waitSubstringEquals​(int start,
                                            int end,
                                            java.lang.String expected,
                                            int waitInSeconds,
                                            int intervalInMilliSeconds)

        Wait for defined number of seconds until result of StringUtils.substring(String, int, int) equals to expected value.

        Parameters:
        expected - the expected result.
        start - the position to start from, negative means count back from the end of the String
        end - the position to end at (exclusive), negative means count back from the end of the String
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitSubstringNotEquals

        default boolean waitSubstringNotEquals​(int start,
                                               java.lang.String expected)

        Wait for defined number of seconds until result of StringUtils.substring(String, int) NOT equals to expected value.

        Parameters:
        expected - the expected result.
        start - the position to start from, negative means count back from the end of the String
        Returns:
        true if wait operation succeed otherwise return false
      • waitSubstringNotEquals

        default boolean waitSubstringNotEquals​(int start,
                                               java.lang.String expected,
                                               int waitInSeconds)

        Wait for defined number of seconds until result of StringUtils.substring(String, int) NOT equals to expected value.

        Parameters:
        expected - the expected result.
        start - the position to start from, negative means count back from the end of the String
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitSubstringNotEquals

        default boolean waitSubstringNotEquals​(int start,
                                               java.lang.String expected,
                                               int waitInSeconds,
                                               int intervalInMilliSeconds)

        Wait for defined number of seconds until result of StringUtils.substring(String, int) NOT equals to expected value.

        Parameters:
        expected - the expected result.
        start - the position to start from, negative means count back from the end of the String
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitSubstringNotEquals

        default boolean waitSubstringNotEquals​(int start,
                                               int end,
                                               java.lang.String expected)

        Wait for defined number of seconds until result of StringUtils.substring(String, int, int) NOT equals to expected value.

        Parameters:
        expected - the expected result.
        start - the position to start from, negative means count back from the end of the String
        end - the position to end at (exclusive), negative means count back from the end of the String
        Returns:
        true if wait operation succeed otherwise return false
      • waitSubstringNotEquals

        default boolean waitSubstringNotEquals​(int start,
                                               int end,
                                               java.lang.String expected,
                                               int waitInSeconds)

        Wait for defined number of seconds until result of StringUtils.substring(String, int, int) NOT equals to expected value.

        Parameters:
        expected - the expected result.
        start - the position to start from, negative means count back from the end of the String
        end - the position to end at (exclusive), negative means count back from the end of the String
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitSubstringNotEquals

        default boolean waitSubstringNotEquals​(int start,
                                               int end,
                                               java.lang.String expected,
                                               int waitInSeconds,
                                               int intervalInMilliSeconds)

        Wait for defined number of seconds until result of StringUtils.substring(String, int, int) NOT equals to expected value.

        Parameters:
        expected - the expected result.
        start - the position to start from, negative means count back from the end of the String
        end - the position to end at (exclusive), negative means count back from the end of the String
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitSubstringsBetweenContains

        default boolean waitSubstringsBetweenContains​(java.lang.String open,
                                                      java.lang.String close,
                                                      java.lang.String expected)

        Wait for defined number of seconds until result of StringUtils.substringsBetween(String, String, String) contains to expected value.

        Parameters:
        expected - the expected result.
        open - the String identifying the start of the substring, empty returns null
        close - the String identifying the end of the substring, empty returns null
        Returns:
        true if wait operation succeed otherwise return false
      • waitSubstringsBetweenContains

        default boolean waitSubstringsBetweenContains​(java.lang.String open,
                                                      java.lang.String close,
                                                      java.lang.String expected,
                                                      int waitInSeconds)

        Wait for defined number of seconds until result of StringUtils.substringsBetween(String, String, String) contains to expected value.

        Parameters:
        expected - the expected result.
        open - the String identifying the start of the substring, empty returns null
        close - the String identifying the end of the substring, empty returns null
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitSubstringsBetweenContains

        default boolean waitSubstringsBetweenContains​(java.lang.String open,
                                                      java.lang.String close,
                                                      java.lang.String expected,
                                                      int waitInSeconds,
                                                      int intervalInMilliSeconds)

        Wait for defined number of seconds until result of StringUtils.substringsBetween(String, String, String) contains to expected value.

        Parameters:
        expected - the expected result.
        open - the String identifying the start of the substring, empty returns null
        close - the String identifying the end of the substring, empty returns null
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitSubstringsBetweenEquals

        default boolean waitSubstringsBetweenEquals​(java.lang.String open,
                                                    java.lang.String close,
                                                    java.util.List<java.lang.String> expected)

        Wait for defined number of seconds until result of StringUtils.substringsBetween(String, String, String) equals to expected value.

        Parameters:
        expected - the expected result.
        open - the String identifying the start of the substring, empty returns null
        close - the String identifying the end of the substring, empty returns null
        Returns:
        true if wait operation succeed otherwise return false
      • waitSubstringsBetweenEquals

        default boolean waitSubstringsBetweenEquals​(java.lang.String open,
                                                    java.lang.String close,
                                                    java.util.List<java.lang.String> expected,
                                                    int waitInSeconds)

        Wait for defined number of seconds until result of StringUtils.substringsBetween(String, String, String) equals to expected value.

        Parameters:
        expected - the expected result.
        open - the String identifying the start of the substring, empty returns null
        close - the String identifying the end of the substring, empty returns null
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitSubstringsBetweenEquals

        default boolean waitSubstringsBetweenEquals​(java.lang.String open,
                                                    java.lang.String close,
                                                    java.util.List<java.lang.String> expected,
                                                    int waitInSeconds,
                                                    int intervalInMilliSeconds)

        Wait for defined number of seconds until result of StringUtils.substringsBetween(String, String, String) equals to expected value.

        Parameters:
        expected - the expected result.
        open - the String identifying the start of the substring, empty returns null
        close - the String identifying the end of the substring, empty returns null
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitSubstringsBetweenNotContains

        default boolean waitSubstringsBetweenNotContains​(java.lang.String open,
                                                         java.lang.String close,
                                                         java.lang.String expected)

        Wait for defined number of seconds until result of StringUtils.substringsBetween(String, String, String) NOT contains to expected value.

        Parameters:
        expected - the expected result.
        open - the String identifying the start of the substring, empty returns null
        close - the String identifying the end of the substring, empty returns null
        Returns:
        true if wait operation succeed otherwise return false
      • waitSubstringsBetweenNotContains

        default boolean waitSubstringsBetweenNotContains​(java.lang.String open,
                                                         java.lang.String close,
                                                         java.lang.String expected,
                                                         int waitInSeconds)

        Wait for defined number of seconds until result of StringUtils.substringsBetween(String, String, String) NOT contains to expected value.

        Parameters:
        expected - the expected result.
        open - the String identifying the start of the substring, empty returns null
        close - the String identifying the end of the substring, empty returns null
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitSubstringsBetweenNotContains

        default boolean waitSubstringsBetweenNotContains​(java.lang.String open,
                                                         java.lang.String close,
                                                         java.lang.String expected,
                                                         int waitInSeconds,
                                                         int intervalInMilliSeconds)

        Wait for defined number of seconds until result of StringUtils.substringsBetween(String, String, String) NOT contains to expected value.

        Parameters:
        expected - the expected result.
        open - the String identifying the start of the substring, empty returns null
        close - the String identifying the end of the substring, empty returns null
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitSubstringsBetweenNotEquals

        default boolean waitSubstringsBetweenNotEquals​(java.lang.String open,
                                                       java.lang.String close,
                                                       java.util.List<java.lang.String> expected)

        Wait for defined number of seconds until result of StringUtils.substringsBetween(String, String, String) NOT equals to expected value.

        Parameters:
        expected - the expected result.
        open - the String identifying the start of the substring, empty returns null
        close - the String identifying the end of the substring, empty returns null
        Returns:
        true if wait operation succeed otherwise return false
      • waitSubstringsBetweenNotEquals

        default boolean waitSubstringsBetweenNotEquals​(java.lang.String open,
                                                       java.lang.String close,
                                                       java.util.List<java.lang.String> expected,
                                                       int waitInSeconds)

        Wait for defined number of seconds until result of StringUtils.substringsBetween(String, String, String) NOT equals to expected value.

        Parameters:
        expected - the expected result.
        open - the String identifying the start of the substring, empty returns null
        close - the String identifying the end of the substring, empty returns null
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitSubstringsBetweenNotEquals

        default boolean waitSubstringsBetweenNotEquals​(java.lang.String open,
                                                       java.lang.String close,
                                                       java.util.List<java.lang.String> expected,
                                                       int waitInSeconds,
                                                       int intervalInMilliSeconds)

        Wait for defined number of seconds until result of StringUtils.substringsBetween(String, String, String) NOT equals to expected value.

        Parameters:
        expected - the expected result.
        open - the String identifying the start of the substring, empty returns null
        close - the String identifying the end of the substring, empty returns null
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitTrimmedValueEquals

        default boolean waitTrimmedValueEquals​(java.lang.String expected)

        Wait for defined number of seconds till if StringUtils.trim(String) value equals the expected value.

        Parameters:
        expected - the expected result.
        Returns:
        true if wait operation succeed otherwise return false
      • waitTrimmedValueEquals

        default boolean waitTrimmedValueEquals​(java.lang.String expected,
                                               int waitInSeconds)

        Wait for defined number of seconds till if StringUtils.trim(String) value equals the expected value.

        Parameters:
        expected - the expected result.
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitTrimmedValueEquals

        default boolean waitTrimmedValueEquals​(java.lang.String expected,
                                               int waitInSeconds,
                                               int intervalInMilliSeconds)

        Wait for defined number of seconds till if StringUtils.trim(String) value equals the expected value.

        Parameters:
        expected - the expected result.
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitTrimmedValueNotEquals

        default boolean waitTrimmedValueNotEquals​(java.lang.String expected)

        Wait for defined number of seconds till if StringUtils.trim(String) value NOT equals the expected value.

        Parameters:
        expected - the expected result.
        Returns:
        true if wait operation succeed otherwise return false
      • waitTrimmedValueNotEquals

        default boolean waitTrimmedValueNotEquals​(java.lang.String expected,
                                                  int waitInSeconds)

        Wait for defined number of seconds till if StringUtils.trim(String) value NOT equals the expected value.

        Parameters:
        expected - the expected result.
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitTrimmedValueNotEquals

        default boolean waitTrimmedValueNotEquals​(java.lang.String expected,
                                                  int waitInSeconds,
                                                  int intervalInMilliSeconds)

        Wait for defined number of seconds till if StringUtils.trim(String) value NOT equals the expected value.

        Parameters:
        expected - the expected result.
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitTruncatedValueEquals

        default boolean waitTruncatedValueEquals​(int maxWidth,
                                                 java.lang.String expected)

        Wait for defined number of seconds till if StringUtils.truncate(String, int) value equals the expected value.

        Parameters:
        maxWidth - maximum length of truncated string, must be positive
        expected - the expected result.
        Returns:
        true if wait operation succeed otherwise return false
      • waitTruncatedValueEquals

        default boolean waitTruncatedValueEquals​(int maxWidth,
                                                 java.lang.String expected,
                                                 int waitInSeconds)

        Wait for defined number of seconds till if StringUtils.truncate(String, int) value equals the expected value.

        Parameters:
        maxWidth - maximum length of truncated string, must be positive
        expected - the expected result.
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitTruncatedValueEquals

        default boolean waitTruncatedValueEquals​(int maxWidth,
                                                 java.lang.String expected,
                                                 int waitInSeconds,
                                                 int intervalInMilliSeconds)

        Wait for defined number of seconds till if StringUtils.truncate(String, int) value equals the expected value.

        Parameters:
        maxWidth - maximum length of truncated string, must be positive
        expected - the expected result.
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitTruncatedValueEquals

        default boolean waitTruncatedValueEquals​(int offset,
                                                 int maxWidth,
                                                 java.lang.String expected)

        Wait for defined number of seconds till if StringUtils.truncate(String, int, int) value equals the expected value.

        Parameters:
        offset - left edge of string to start truncate from
        maxWidth - maximum length of truncated string, must be positive
        expected - the expected result.
        Returns:
        true if wait operation succeed otherwise return false
      • waitTruncatedValueEquals

        default boolean waitTruncatedValueEquals​(int offset,
                                                 int maxWidth,
                                                 java.lang.String expected,
                                                 int waitInSeconds)

        Wait for defined number of seconds till if StringUtils.truncate(String, int, int) value equals the expected value.

        Parameters:
        offset - left edge of string to start truncate from
        maxWidth - maximum length of truncated string, must be positive
        expected - the expected result.
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitTruncatedValueEquals

        default boolean waitTruncatedValueEquals​(int offset,
                                                 int maxWidth,
                                                 java.lang.String expected,
                                                 int waitInSeconds,
                                                 int intervalInMilliSeconds)

        Wait for defined number of seconds till if StringUtils.truncate(String, int, int) value equals the expected value.

        Parameters:
        offset - left edge of string to start truncate from
        maxWidth - maximum length of truncated string, must be positive
        expected - the expected result.
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitTruncatedValueNotEquals

        default boolean waitTruncatedValueNotEquals​(int maxWidth,
                                                    java.lang.String expected)

        Wait for defined number of seconds till if StringUtils.truncate(String, int) value equals the expected value.

        Parameters:
        maxWidth - maximum length of truncated string, must be positive
        expected - the expected result.
        Returns:
        true if wait operation succeed otherwise return false
      • waitTruncatedValueNotEquals

        default boolean waitTruncatedValueNotEquals​(int maxWidth,
                                                    java.lang.String expected,
                                                    int waitInSeconds)

        Wait for defined number of seconds till if StringUtils.truncate(String, int) value equals the expected value.

        Parameters:
        maxWidth - maximum length of truncated string, must be positive
        expected - the expected result.
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitTruncatedValueNotEquals

        default boolean waitTruncatedValueNotEquals​(int maxWidth,
                                                    java.lang.String expected,
                                                    int waitInSeconds,
                                                    int intervalInMilliSeconds)

        Wait for defined number of seconds till if StringUtils.truncate(String, int) value equals the expected value.

        Parameters:
        maxWidth - maximum length of truncated string, must be positive
        expected - the expected result.
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false
      • waitTruncatedValueNotEquals

        default boolean waitTruncatedValueNotEquals​(int offset,
                                                    int maxWidth,
                                                    java.lang.String expected)

        Wait for defined number of seconds till if StringUtils.truncate(String, int, int) value NOT equals the expected value.

        Parameters:
        offset - left edge of string to start truncate from
        maxWidth - maximum length of truncated string, must be positive
        expected - the expected result.
        Returns:
        true if wait operation succeed otherwise return false
      • waitTruncatedValueNotEquals

        default boolean waitTruncatedValueNotEquals​(int offset,
                                                    int maxWidth,
                                                    java.lang.String expected,
                                                    int waitInSeconds)

        Wait for defined number of seconds till if StringUtils.truncate(String, int, int) value NOT equals the expected value.

        Parameters:
        offset - left edge of string to start truncate from
        maxWidth - maximum length of truncated string, must be positive
        expected - the expected result.
        waitInSeconds - maximum wait time.
        Returns:
        true if wait operation succeed otherwise return false
      • waitTruncatedValueNotEquals

        default boolean waitTruncatedValueNotEquals​(int offset,
                                                    int maxWidth,
                                                    java.lang.String expected,
                                                    int waitInSeconds,
                                                    int intervalInMilliSeconds)

        Wait for defined number of seconds till if StringUtils.truncate(String, int, int) value NOT equals the expected value.

        Parameters:
        offset - left edge of string to start truncate from
        maxWidth - maximum length of truncated string, must be positive
        expected - the expected result.
        waitInSeconds - maximum wait time.
        intervalInMilliSeconds - interval between retries in milliseconds
        Returns:
        true if wait operation succeed otherwise return false