com.slickqa.webdriver.finders.FindByText Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of slick-webdriver-java Show documentation
Show all versions of slick-webdriver-java Show documentation
This is a wrapper and utilities for using webdriver / selenium in Java.
package com.slickqa.webdriver.finders;
import org.openqa.selenium.By;
import org.openqa.selenium.WebElement;
import java.util.ArrayList;
import java.util.Arrays;
/**
*
* @author slambson
*/
public class FindByText extends AbstractFindByParentBy
{
String text;
public FindByText(String text)
{
this.text = text;
}
@Override
public String toString()
{
return String.format("By text '%s'.", text);
}
@Override
public boolean matches(WebElement e)
{
String textValue = e.getText();
return textValue != null && textValue.equals(text);
}
@Override
public ArrayList getParentBy()
{
return new ArrayList(Arrays.asList(tagName("label"), tagName("div"), tagName("h1"), tagName("h2"), tagName("h3")));
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy