com.codeborne.selenide.appium.commands.AppiumDragAndDrop Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of selenide-appium Show documentation
Show all versions of selenide-appium Show documentation
Selenide = concise API for Selenium WebDriver
package com.codeborne.selenide.appium.commands;
import com.codeborne.selenide.DragAndDropOptions;
import com.codeborne.selenide.SelenideElement;
import com.codeborne.selenide.commands.DragAndDrop;
import com.codeborne.selenide.impl.WebElementSource;
import io.appium.java_client.AppiumDriver;
import org.openqa.selenium.Point;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.interactions.Pause;
import org.openqa.selenium.interactions.PointerInput;
import org.openqa.selenium.interactions.Sequence;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import javax.annotation.Nonnull;
import javax.annotation.Nullable;
import javax.annotation.ParametersAreNonnullByDefault;
import java.util.Optional;
import static com.codeborne.selenide.Condition.visible;
import static com.codeborne.selenide.DragAndDropOptions.DragAndDropMethod.ACTIONS;
import static com.codeborne.selenide.DragAndDropOptions.DragAndDropMethod.JS;
import static com.codeborne.selenide.appium.WebdriverUnwrapper.cast;
import static java.time.Duration.ofMillis;
import static java.util.Collections.singletonList;
@ParametersAreNonnullByDefault
public class AppiumDragAndDrop extends DragAndDrop {
private static final Logger log = LoggerFactory.getLogger(AppiumDragAndDrop.class);
@Override
@Nonnull
public SelenideElement execute(SelenideElement proxy, WebElementSource locator, @Nullable Object[] args) {
Optional appiumDriverOptional = cast(locator.driver(), AppiumDriver.class);
if (!appiumDriverOptional.isPresent()) {
return super.execute(proxy, locator, args);
}
AppiumDriver appiumDriver = appiumDriverOptional.get();
DragAndDropOptions options = dragAndDropOptions(args, ACTIONS);
if (options.getMethod() == JS) {
log.debug("Drag'n'Drop with JavaScript is not supported in mobile apps");
}
SelenideElement target = options.getTarget(locator.driver());
target.shouldBe(visible);
Sequence sequence = getSequenceToPerformDragAndDrop(getCenter(locator.getWebElement()), getCenter(target));
appiumDriver.perform(singletonList(sequence));
return proxy;
}
private Sequence getSequenceToPerformDragAndDrop(Point source, Point target) {
PointerInput finger = new PointerInput(PointerInput.Kind.TOUCH, "finger");
return new Sequence(finger, 1)
.addAction(finger.createPointerMove(ofMillis(0), PointerInput.Origin.viewport(), source.x, source.y))
.addAction(finger.createPointerDown(PointerInput.MouseButton.MIDDLE.asArg()))
.addAction(new Pause(finger, ofMillis(600)))
.addAction(finger.createPointerMove(ofMillis(600),
PointerInput.Origin.viewport(),
target.x, target.y))
.addAction(finger.createPointerUp(PointerInput.MouseButton.MIDDLE.asArg()));
}
private Point getCenter(WebElement element) {
int x = element.getLocation().getX() + element.getSize().getWidth() / 2;
int y = element.getLocation().getY() + element.getSize().getHeight() / 2;
return new Point(x, y);
}
}