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

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

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

import org.openqa.selenium.WebElement;

import org.hamcrest.Description;
import org.hamcrest.Factory;
import org.hamcrest.Matcher;
import org.hamcrest.TypeSafeMatcher;

/**
 * Matcher to match a selected element (e.g. a radio button).
 * 
 * @author rchatley (Robert Chatley)
 */
public class SelectionMatcher extends TypeSafeMatcher {

  @Override
  public boolean matchesSafely(WebElement item) {
    return item.isSelected();
  }

  public void describeTo(Description description) {
    description.appendText("should be selected");
  }

  @Factory
  public static Matcher selection() {
    return new SelectionMatcher();
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy