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

info.kapable.sondes.scenarios.action.ClickerAction Maven / Gradle / Ivy

The newest version!
package info.kapable.sondes.scenarios.action;

import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;

public class ClickerAction extends Action {

	protected By by;
	public ClickerAction(By by) {
		this.by = by;
	}
	@Override
	public void executeAction(WebDriver driver) {
		this.logEvent("Firefox", "Click ");
	    WebElement btn = driver.findElement(by);
	    btn.click();
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy