Class DragAndDropParameter

    • Constructor Summary

      Constructors 
      Constructor Description
      DragAndDropParameter​(org.openqa.selenium.WebElement source, org.openqa.selenium.WebElement target)
      Constructs a new instance of DragAndDropParameter with the given source and target WebElements.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.util.Map<java.lang.String,​java.lang.Object> toJson()  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • DragAndDropParameter

        public DragAndDropParameter​(org.openqa.selenium.WebElement source,
                                    org.openqa.selenium.WebElement target)
        Constructs a new instance of DragAndDropParameter with the given source and target WebElements. Throws an IllegalArgumentException if either source or target is null.
        Parameters:
        source - The source WebElement from which the drag operation starts.
        target - The target WebElement where the drag operation ends.
        Throws:
        java.lang.IllegalArgumentException - if source or target is null.