com.slickqa.webdriver.finders.FindByAlt 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 java.util.ArrayList;
import java.util.Arrays;
import org.openqa.selenium.By;
import org.openqa.selenium.WebElement;
/**
*
* @author jcorbett
*/
public class FindByAlt extends AbstractFindByParentBy
{
String altText;
public FindByAlt(String altText)
{
this.altText = altText;
}
@Override
public String toString()
{
return String.format("By alt text '%s'.", altText);
}
@Override
public boolean matches(WebElement e)
{
String attrValue = e.getAttribute("alt");
return attrValue != null && attrValue.equals(altText);
}
@Override
public ArrayList getParentBy()
{
return new ArrayList(Arrays.asList(tagName("img"), tagName("input")));
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy