Interface GrapheneElementAction

All Known Subinterfaces:
GrapheneElement

public interface GrapheneElementAction
An interface containing actions to be operated on an WebElement
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Performs a double-click at middle of an element.
    void
    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

      void writeIntoElement(String text)
      Writes into an element the given string. Equivalent to: Actions.moveToElement(element).click().sendKeys(text).perform()
      Parameters:
      text - Text to write