| Package | Description |
|---|---|
| org.fluentlenium.core.filter | |
| org.fluentlenium.core.filter.matcher |
| Modifier and Type | Method and Description |
|---|---|
static AbstractMatcher |
MatcherConstructor.contains(Pattern pattern)
Create a matcher for a containing pattern
|
static AbstractMatcher |
MatcherConstructor.contains(String matcher)
Create a matcher for a containing string
|
static AbstractMatcher |
MatcherConstructor.endsWith(Pattern pattern)
Create a matcher filtering by a string that ends with the pattern
|
static AbstractMatcher |
MatcherConstructor.endsWith(String matcher)
Create a matcher filtering by a string that ends with the matcher
|
static AbstractMatcher |
MatcherConstructor.equal(String matcher)
Create a matcher to equal the string matcher
|
AbstractMatcher |
AttributeFilter.getMatcher()
Get the matcher of this filter
|
static AbstractMatcher |
MatcherConstructor.notContains(Pattern pattern)
Create a matcher for not containing the pattern
|
static AbstractMatcher |
MatcherConstructor.notContains(String matcher)
Create a matcher for not containing a string
|
static AbstractMatcher |
MatcherConstructor.notEndsWith(Pattern pattern)
Create a matcher filtering by a string that not ends with the pattern params
|
static AbstractMatcher |
MatcherConstructor.notEndsWith(String matcher)
Create a matcher filtering by a string that not ends with the string params
|
static AbstractMatcher |
MatcherConstructor.notStartsWith(Pattern pattern)
Create a matcher filtering by a string that not starts with the pattern params
|
static AbstractMatcher |
MatcherConstructor.notStartsWith(String matcher)
Create a matcher filtering by a string that not starts with the string params
|
static AbstractMatcher |
MatcherConstructor.startsWith(Pattern pattern)
Create a matcher filtering by a string that start with the matcher
|
static AbstractMatcher |
MatcherConstructor.startsWith(String matcher)
Create a matcher filtering by a string that start with the matcher
|
| Constructor and Description |
|---|
AttributeFilter(String customAttribute,
AbstractMatcher matcher)
Construct a filter with a custom attribute and an associated matcher
|
| Modifier and Type | Class and Description |
|---|---|
class |
ContainsMatcher
Matcher checking that actual contains input value.
|
class |
ContainsWordMatcher
Matcher checking that actual contains word from input value.
|
class |
EndsWithMatcher
Matcher checking that actual ends with input value.
|
class |
EqualMatcher
Matcher checking that actual is equal to input value.
|
class |
NotContainsMatcher
Matcher checking that actual doesn't contain input value.
|
class |
NotEndsWithMatcher
Matcher checking that actual doesn't end with input value.
|
class |
NotStartsWithMatcher
Matcher checking that actual doesn't start with input value.
|
class |
StartsWithMatcher
Matcher checking that actual starts with input value.
|
Copyright © 2016 FluentLenium. All Rights Reserved.