com.codeborne.selenide.appium.commands.AppiumSwipeTo 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.Command;
import com.codeborne.selenide.SelenideElement;
import com.codeborne.selenide.appium.AppiumScrollCoordinates;
import com.codeborne.selenide.appium.AppiumSwipeDirection;
import com.codeborne.selenide.appium.AppiumSwipeOptions;
import com.codeborne.selenide.impl.WebElementSource;
import io.appium.java_client.AppiumDriver;
import org.openqa.selenium.Dimension;
import org.openqa.selenium.NoSuchElementException;
import org.openqa.selenium.interactions.PointerInput;
import org.openqa.selenium.interactions.Sequence;
import javax.annotation.CheckReturnValue;
import javax.annotation.Nonnull;
import javax.annotation.Nullable;
import javax.annotation.ParametersAreNonnullByDefault;
import java.util.Arrays;
import java.util.Optional;
import static com.codeborne.selenide.appium.AppiumSwipeDirection.RIGHT;
import static com.codeborne.selenide.appium.AppiumSwipeOptions.right;
import static com.codeborne.selenide.appium.WebdriverUnwrapper.cast;
import static com.codeborne.selenide.commands.Util.firstOf;
import static java.time.Duration.ofMillis;
import static java.util.Collections.singletonList;
@ParametersAreNonnullByDefault
public class AppiumSwipeTo implements Command {
private static final AppiumSwipeOptions DEFAULT_OPTIONS = right();
@Nullable
@Override
public SelenideElement execute(SelenideElement element, WebElementSource locator, @Nullable Object[] args) {
AppiumSwipeOptions appiumSwipeOptions = extractOptions(args);
Optional driver = cast(locator.driver(), AppiumDriver.class);
if (!driver.isPresent()) {
throw new IllegalArgumentException("Swipe is supported only in Appium");
}
swipeInMobile(driver.get(), locator, appiumSwipeOptions);
return null;
}
private void swipeInMobile(AppiumDriver appiumDriver, WebElementSource locator, AppiumSwipeOptions appiumSwipeOptions) {
int currentSwipeCount = 0;
while (isElementNotDisplayed(locator)
&& isLessThanMaxSwipeCount(currentSwipeCount, appiumSwipeOptions.getMaxSwipeCounts())) {
performSwipe(appiumDriver, appiumSwipeOptions.getAppiumSwipeDirection());
currentSwipeCount++;
}
}
private boolean isLessThanMaxSwipeCount(int currentSwipeCount, int maxSwipeCounts) {
return currentSwipeCount < maxSwipeCounts;
}
private boolean isElementNotDisplayed(WebElementSource locator) {
try {
return !locator.getWebElement().isDisplayed();
} catch (NoSuchElementException noSuchElementException) {
return true;
}
}
private Dimension getMobileDeviceSize(AppiumDriver appiumDriver) {
return appiumDriver.manage().window().getSize();
}
private void performSwipe(AppiumDriver appiumDriver, AppiumSwipeDirection swipeDirection) {
Dimension size = getMobileDeviceSize(appiumDriver);
AppiumScrollCoordinates scrollCoordinates = getScrollCoordinates(swipeDirection, size);
PointerInput finger = new PointerInput(PointerInput.Kind.TOUCH, "finger");
Sequence sequenceToPerformScroll = getSequenceToPerformSwipe(finger, scrollCoordinates);
appiumDriver.perform(singletonList(sequenceToPerformScroll));
}
private AppiumScrollCoordinates getScrollCoordinates(AppiumSwipeDirection swipeDirection, Dimension size) {
if (swipeDirection == RIGHT) {
return new AppiumScrollCoordinates((int) (size.getWidth() * 0.75), size.getHeight() / 2,
(int) (size.getWidth() * 0.25), size.getHeight() / 2);
} else {
return new AppiumScrollCoordinates((int) (size.getWidth() * 0.25), size.getHeight() / 2,
(int) (size.getWidth() * 0.75), size.getHeight() / 2);
}
}
private Sequence getSequenceToPerformSwipe(PointerInput finger, AppiumScrollCoordinates scrollCoordinates) {
return new Sequence(finger, 1)
.addAction(finger.createPointerMove(ofMillis(0),
PointerInput.Origin.viewport(), scrollCoordinates.getStartX(), scrollCoordinates.getStartY()))
.addAction(finger.createPointerDown(PointerInput.MouseButton.MIDDLE.asArg()))
.addAction(finger.createPointerMove(ofMillis(200),
PointerInput.Origin.viewport(), scrollCoordinates.getEndX(), scrollCoordinates.getEndY()))
.addAction(finger.createPointerUp(PointerInput.MouseButton.MIDDLE.asArg()));
}
@Nonnull
@CheckReturnValue
private AppiumSwipeOptions extractOptions(@Nullable Object[] args) {
if (args == null || args.length == 0) {
return DEFAULT_OPTIONS;
} else if (args.length == 1) {
return firstOf(args);
} else {
throw new IllegalArgumentException("Unsupported swipe arguments: " + Arrays.toString(args));
}
}
}