List of usage examples for org.openqa.selenium Keys SPACE
Keys SPACE
To view the source code for org.openqa.selenium Keys SPACE.
Click Source Link
From source file:se.nackademin.selenide.pages.UserFormPage.java
public void clickLibrarianRadioButton() { clickButton("librarian role radio button", librarianRadioButton); WebElement element = new WebDriverWait(getWebDriver(), 30) .until(ExpectedConditions.elementToBeClickable(librarianRadioButton)); element.sendKeys(Keys.SPACE); }