Package | Description |
---|---|
org.imaginea.test.automation.framework.dom.filter |
Modifier and Type | Class and Description |
---|---|
class |
NegatedTextMatcher
Created by menonvarun on 03-12-2014.
|
class |
PatternTextMatcher
Created by menonvarun on 03-12-2014.
|
Modifier and Type | Method and Description |
---|---|
static TextMatcher |
TextMatching.contains(Pattern pattern)
Returns a
TextMatcher for matching the text that contains the given pattern. |
static TextMatcher |
TextMatching.contains(String str)
Returns a
TextMatcher for matching the text that contains the given string |
static TextMatcher |
TextMatching.containsWord(Pattern pattern)
Returns a
TextMatcher for matching the text that contains the word based on the given pattern. |
static TextMatcher |
TextMatching.containsWord(String str)
Returns a
TextMatcher for matching the text that contains word of the given string |
static TextMatcher |
TextMatching.endsWith(Pattern pattern)
Returns a
TextMatcher for matching the text that ends with the given pattern. |
static TextMatcher |
TextMatching.endsWith(String str)
Returns a
TextMatcher for matching the text that ends with the given string |
static TextMatcher |
TextMatching.equalsValue(String str)
Returns a
TextMatcher for matching the text that equals the given string |
TextMatcher |
Filter.getTextMatcher()
Returns the TextMatcher stored
|
static TextMatcher |
TextMatching.iContains(Pattern pattern)
Returns a
TextMatcher for matching as case insensitive the text that
contains the given pattern. |
static TextMatcher |
TextMatching.iContains(String str)
Returns a
TextMatcher for matching as case insensitive the text that contains the given
string. |
static TextMatcher |
TextMatching.iContainsWord(Pattern pattern)
Returns a
TextMatcher for matching as case insensitive the text that contains the word based on the given pattern. |
static TextMatcher |
TextMatching.iContainsWord(String str)
Returns a
TextMatcher for matching as case insensitive the text that contains the word for the given
string. |
static TextMatcher |
TextMatching.iEndsWith(Pattern pattern)
Returns a
TextMatcher for matching as case insensitive the text that ends with the given pattern. |
static TextMatcher |
TextMatching.iEndsWith(String str)
Returns a
TextMatcher for matching as case insensitive the text that ends with the given
string. |
static TextMatcher |
TextMatching.iEqualsValue(String str)
Returns a
TextMatcher for matching as case insensitive the text that equals the given string. |
static TextMatcher |
TextMatching.iNotContains(Pattern pattern)
Returns a
TextMatcher for matching as case insensitive the text that does not
contains the given pattern. |
static TextMatcher |
TextMatching.iNotContains(String str)
Returns a
TextMatcher for matching as case insensitive the text that does not contains the given
string. |
static TextMatcher |
TextMatching.iNotContainsWord(Pattern pattern)
Returns a
TextMatcher for matching as case insensitive the text that does not
contains the word based on the given pattern. |
static TextMatcher |
TextMatching.iNotContainsWord(String str)
Returns a
TextMatcher for matching as case insensitive the text that does not contains
the word for the given string. |
static TextMatcher |
TextMatching.iNotEndsWith(Pattern pattern)
Returns a
TextMatcher for matching as case insensitive the text that does not
ends with based on the given pattern. |
static TextMatcher |
TextMatching.iNotEndsWith(String str)
Returns a
TextMatcher for matching as case insensitive the text that does not ends with the given
string. |
static TextMatcher |
TextMatching.iNotEqualsValue(String str)
Returns a
TextMatcher for matching as case insensitive the text that does not
equalt the given string. |
static TextMatcher |
TextMatching.iNotStartsWith(Pattern pattern)
Returns a
TextMatcher for matching as case insensitive the text that does not
starts with the given pattern. |
static TextMatcher |
TextMatching.iNotStartsWith(String str)
Returns a
TextMatcher for matching as case insensitive the text that does not starts with the given
string. |
static TextMatcher |
TextMatching.iStartsWith(Pattern pattern)
Returns a
TextMatcher for matching as case insensitive the text that
starts with the given pattern. |
static TextMatcher |
TextMatching.iStartsWith(String str)
Returns a
TextMatcher for matching as case insensitive the text that starts with the given
string. |
static TextMatcher |
TextMatching.notContains(Pattern pattern)
Returns a
TextMatcher for matching the text that does not contains the given pattern. |
static TextMatcher |
TextMatching.notContains(String str)
Returns a
TextMatcher for matching the text that does not contains the given string |
static TextMatcher |
TextMatching.notContainsWord(Pattern pattern)
Returns a
TextMatcher for matching the text that does not contains the word based on the given pattern. |
static TextMatcher |
TextMatching.notContainsWord(String str)
Returns a
TextMatcher for matching the text that does not contains word of the given string |
static TextMatcher |
TextMatching.notEndsWith(Pattern pattern)
Returns a
TextMatcher for matching the text that does not
ends with the given pattern. |
static TextMatcher |
TextMatching.notEndsWith(String str)
Returns a
TextMatcher for matching the text that does not ends with the given string |
static TextMatcher |
TextMatching.notEqualsValue(String str)
Returns a
TextMatcher for matching the text that does not equals the given string
c |
static TextMatcher |
TextMatching.notStartsWith(Pattern pattern)
Returns a
TextMatcher for matching the text that does not starts with the given pattern. |
static TextMatcher |
TextMatching.notStartsWith(String str)
Returns a
TextMatcher for matching the text that does not starts with the given string |
static TextMatcher |
TextMatching.startsWith(Pattern pattern)
Returns a
TextMatcher for matching the text that starts with the given pattern. |
static TextMatcher |
TextMatching.startsWith(String str)
Returns a
TextMatcher for matching the text that starts with the given string |
Modifier and Type | Method and Description |
---|---|
static Filter |
Filter.whereAttribute(String attributeName,
TextMatcher textMatcher)
Returns a filter for the given attributeName value using given TextMatcher.
|
static Filter |
Filter.whereClass(TextMatcher textMatcher)
Returns filter for class attribute using given TextMatcher.
|
static Filter |
Filter.whereId(TextMatcher textMatcher)
Returns filter for id attribute using given TextMatcher.
|
static Filter |
Filter.whereName(TextMatcher textMatcher)
Returns filter for name attribute using given TextMatcher.
|
static Filter |
Filter.whereText(TextMatcher textMatcher)
Returns filter for filtering text of a element for a given TextMatcher.
|
Constructor and Description |
---|
Filter(FilterType filterType,
String attributeName,
TextMatcher textMatcher) |
NegatedTextMatcher(TextMatcher matcher) |
Copyright © 2014. All rights reserved.