All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.slickqa.webdriver.finders.FindBySrc Maven / Gradle / Ivy

There is a newer version: 1.0.1-37
Show newest version
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 FindBySrc extends AbstractFindByParentBy
{
	private String srcText;

	public FindBySrc(String srcText)
	{
		this.srcText = srcText;
	}

	@Override
	public boolean matches(WebElement e)
	{
		String attrValue = e.getAttribute("src");
		return attrValue != null && attrValue.equals(srcText);
	}

	@Override
	public ArrayList getParentBy()
	{
		return new ArrayList(Arrays.asList(tagName("img")));
	}

	@Override
	public String toString()
	{
		return String.format("By src attribute matching '%s'.", srcText);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy