How to develop your own Plugins for Seleniet
Java File Create a java file in the seleniet root folder, like e.g. this one: package et.seleniet.plugins.ext; import java.util.List; import org.openqa.selenium.Alert; import org.openqa.selenium.NoSuchElementException; import org.openqa.selenium.WebElement; import et.seleniet.api.AbortException; import et.seleniet.api.ElementIndependentKeywordPlugin; import et.seleniet.api.Seleniet; import et.seleniet.api.Log; public class DummyExamplePlugin extends ElementIndependentKeywordPlugin { public void execute(Seleniet driver, WebElement elem, String page, List<String> lineArgs, List<String> tcParams) throws NoSuchElementException, AbortException { Read more about How to develop your own Plugins for Seleniet[…]