Class SerenityActions


  • public class SerenityActions
    extends org.openqa.selenium.interactions.Actions
    • Field Summary

      • Fields inherited from class org.openqa.selenium.interactions.Actions

        action
    • Constructor Summary

      Constructors 
      Constructor Description
      SerenityActions​(org.openqa.selenium.WebDriver driver)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      org.openqa.selenium.interactions.Actions click​(org.openqa.selenium.WebElement target)  
      org.openqa.selenium.interactions.Actions clickAndHold​(org.openqa.selenium.WebElement target)  
      org.openqa.selenium.interactions.Actions contextClick​(org.openqa.selenium.WebElement target)  
      org.openqa.selenium.interactions.Actions doubleClick​(org.openqa.selenium.WebElement target)  
      org.openqa.selenium.interactions.Actions dragAndDrop​(org.openqa.selenium.WebElement source, org.openqa.selenium.WebElement target)  
      org.openqa.selenium.interactions.Actions dragAndDropBy​(org.openqa.selenium.WebElement source, int xOffset, int yOffset)  
      org.openqa.selenium.interactions.Actions keyDown​(org.openqa.selenium.WebElement target, CharSequence key)  
      org.openqa.selenium.interactions.Actions keyUp​(org.openqa.selenium.WebElement target, CharSequence key)  
      org.openqa.selenium.interactions.Actions moveToElement​(org.openqa.selenium.WebElement target)  
      org.openqa.selenium.interactions.Actions moveToElement​(org.openqa.selenium.WebElement target, int xOffset, int yOffset)  
      org.openqa.selenium.interactions.Actions release​(org.openqa.selenium.WebElement target)  
      org.openqa.selenium.interactions.Actions sendKeys​(org.openqa.selenium.WebElement target, CharSequence... keys)  
      • Methods inherited from class org.openqa.selenium.interactions.Actions

        build, click, clickAndHold, contextClick, doubleClick, keyDown, keyUp, moveByOffset, pause, pause, perform, release, sendKeys, tick, tick
    • Constructor Detail

      • SerenityActions

        public SerenityActions​(org.openqa.selenium.WebDriver driver)
    • Method Detail

      • keyDown

        public org.openqa.selenium.interactions.Actions keyDown​(org.openqa.selenium.WebElement target,
                                                                CharSequence key)
        Overrides:
        keyDown in class org.openqa.selenium.interactions.Actions
      • keyUp

        public org.openqa.selenium.interactions.Actions keyUp​(org.openqa.selenium.WebElement target,
                                                              CharSequence key)
        Overrides:
        keyUp in class org.openqa.selenium.interactions.Actions
      • sendKeys

        public org.openqa.selenium.interactions.Actions sendKeys​(org.openqa.selenium.WebElement target,
                                                                 CharSequence... keys)
        Overrides:
        sendKeys in class org.openqa.selenium.interactions.Actions
      • clickAndHold

        public org.openqa.selenium.interactions.Actions clickAndHold​(org.openqa.selenium.WebElement target)
        Overrides:
        clickAndHold in class org.openqa.selenium.interactions.Actions
      • release

        public org.openqa.selenium.interactions.Actions release​(org.openqa.selenium.WebElement target)
        Overrides:
        release in class org.openqa.selenium.interactions.Actions
      • click

        public org.openqa.selenium.interactions.Actions click​(org.openqa.selenium.WebElement target)
        Overrides:
        click in class org.openqa.selenium.interactions.Actions
      • doubleClick

        public org.openqa.selenium.interactions.Actions doubleClick​(org.openqa.selenium.WebElement target)
        Overrides:
        doubleClick in class org.openqa.selenium.interactions.Actions
      • moveToElement

        public org.openqa.selenium.interactions.Actions moveToElement​(org.openqa.selenium.WebElement target)
        Overrides:
        moveToElement in class org.openqa.selenium.interactions.Actions
      • moveToElement

        public org.openqa.selenium.interactions.Actions moveToElement​(org.openqa.selenium.WebElement target,
                                                                      int xOffset,
                                                                      int yOffset)
        Overrides:
        moveToElement in class org.openqa.selenium.interactions.Actions
      • contextClick

        public org.openqa.selenium.interactions.Actions contextClick​(org.openqa.selenium.WebElement target)
        Overrides:
        contextClick in class org.openqa.selenium.interactions.Actions
      • dragAndDrop

        public org.openqa.selenium.interactions.Actions dragAndDrop​(org.openqa.selenium.WebElement source,
                                                                    org.openqa.selenium.WebElement target)
        Overrides:
        dragAndDrop in class org.openqa.selenium.interactions.Actions
      • dragAndDropBy

        public org.openqa.selenium.interactions.Actions dragAndDropBy​(org.openqa.selenium.WebElement source,
                                                                      int xOffset,
                                                                      int yOffset)
        Overrides:
        dragAndDropBy in class org.openqa.selenium.interactions.Actions