com.pojosontheweb.selenium.FindrActions Maven / Gradle / Ivy
package com.pojosontheweb.selenium;
import com.google.common.base.Function;
import org.openqa.selenium.WebElement;
/**
* 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);
}
}