All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jdiai.DragAndDrop Maven / Gradle / Ivy

There is a newer version: 1.1.8
Show newest version
package com.jdiai;

import org.openqa.selenium.WebElement;

public class DragAndDrop {
    private final JS dragElement;
    public DragAndDrop(JS dragElement) {
        this.dragElement = dragElement;
    }
    public void andDropTo(WebElement dropArea) {
        dragElement.dragAndDropTo(dropArea);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy