949596979899100
public static Matcher<Element> text(Matcher<String> matcher) { return new HasTextMatcher(matcher); } public static Matcher<Element> visible() { return new IsVisibleMatcher(); }
9899100101102103104
public static Matcher<Element> visible() { return new IsVisibleMatcher(); } public static Matcher<Element> notVisible() { return not(new IsVisibleMatcher()); }