private FluentWebElements getResultElements() {
return within(secs(2)).links(className("listing-thumb"));
}
private FluentMatcher lowerCaseTitleContaining(final String thing) {
return new FluentMatcher() {
public boolean matches(WebElement webElement) {
return webElement.getAttribute("title").toLowerCase().contains(thing);
}
};
}