FlaNium.WinAPI.elements.Button Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of FlaNium.WinAPI Show documentation
Show all versions of FlaNium.WinAPI Show documentation
Library extending the capabilities of the FlaNium driver.
The newest version!
package FlaNium.WinAPI.elements;
import FlaNium.WinAPI.DesktopElement;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.remote.Response;
public class Button extends DesktopElement {
private static final String BUTTON_INVOKE = "buttonInvoke";
public Button(WebElement element) {
super(element);
}
/**
* Invokes the element.
*/
public void invoke(){
Response response = callVoidCommand(BUTTON_INVOKE);
}
}