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

com.pojosontheweb.selenium.FindrActions Maven / Gradle / Ivy

There is a newer version: 3.0.1
Show newest version
package com.pojosontheweb.selenium;

import org.openqa.selenium.WebElement;

import java.util.function.Function;

/**
 * Central place for click/clear/sendKeys behavior. Can be extended/overriden
 * in order to change the default behavior.
 */
public class FindrActions {

	public Function click() {
		return Findrs.click();
	}

	public Function clear() {
		return Findrs.clear();
	}

	public Function sendKeys(CharSequence... keys) {
		return Findrs.sendKeys(keys);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy