Package org.jboss.arquillian.graphene
Interface GrapheneElementAction
- All Known Subinterfaces:
GrapheneElement
public interface GrapheneElementAction
An interface containing actions to be operated on an
WebElement-
Method Summary
Modifier and TypeMethodDescriptionvoidPerforms a double-click at middle of an element.voidwriteIntoElement(String text) Writes into an element the given string.
-
Method Details
-
doubleClick
void doubleClick()Performs a double-click at middle of an element. Equivalent to: Actions.moveToElement(element).doubleClick().perform() -
writeIntoElement
Writes into an element the given string. Equivalent to: Actions.moveToElement(element).click().sendKeys(text).perform()- Parameters:
text- Text to write
-