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

org.openqa.selenium.lift.match.ValueMatcher Maven / Gradle / Ivy

There is a newer version: 0.9.7376
Show newest version
package org.openqa.selenium.lift.match;

import org.hamcrest.Description;
import org.hamcrest.Factory;
import org.hamcrest.Matcher;
import org.hamcrest.TypeSafeMatcher;
import org.openqa.selenium.WebElement;

/**
 * Matches the value of an element, for example an input field.
 * 
 * @author rchatley (Robert Chatley)
 */
public class ValueMatcher extends TypeSafeMatcher {

	private final Object value;

	public ValueMatcher(Object value) {
		this.value = value;
	}
	
	@Override
	public boolean matchesSafely(WebElement item) {
		return item.getValue().equals(value);
	}

	public void describeTo(Description description) {
		description.appendText("should have value ").appendValue(value);
	}
	
	@Factory
	public static Matcher value(final Object value) {
		return new ValueMatcher(value);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy