Created
October 7, 2021 00:35
-
-
Save dannyshain/933dcac0e8276af67d9b7192ef640ae2 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
MobileElement source = (MobileElement) new WebDriverWait(driver, 30) | |
.until(elementToBeClickable(MobileBy.AccessibilityId("slider"))); | |
driver.addCommand(HttpMethod.POST, String.format("/session/%s/plugin/actions/swipe", driver.getSessionId()), "swipe"); | |
driver.execute("swipe", ImmutableMap.of("elementId", source.getId(), "percentage", 50)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment