Interface GuiElementCoreActions

    • Method Detail

      • select

        default void select​(boolean select)
      • select

        void select()
      • deselect

        void deselect()
      • type

        void type​(java.lang.String text)
      • click

        void click()
      • submit

        void submit()
      • sendKeys

        void sendKeys​(java.lang.CharSequence... charSequences)
      • clear

        void clear()
      • highlight

        void highlight​(java.awt.Color color)
      • hover

        void hover()
      • contextClick

        void contextClick()
      • rightClick

        @Deprecated
        default void rightClick()
        Deprecated.
      • mouseOver

        @Deprecated
        default void mouseOver()
        Deprecated.
      • scrollToElement

        @Deprecated
        default void scrollToElement()
        Deprecated.
        Scroll to the position of this element.
      • scrollToElement

        @Deprecated
        void scrollToElement​(int yOffset)
        Deprecated.
      • scrollIntoView

        default void scrollIntoView()
      • scrollIntoView

        void scrollIntoView​(org.openqa.selenium.Point offset)
      • scrollToTop

        void scrollToTop()
      • doubleClick

        void doubleClick()
        doubleclick
      • swipe

        void swipe​(int offsetX,
                   int offSetY)
        Swipe the element by the given offset. (0,0) should be the top left.
        Parameters:
        offsetX - horizontal offset in pixel.
        offSetY - vertical offset in pixel.