'Swipe does not work on a native android application in appium python
I've tried several options and none of them work. All examples below do not work. Swiping to an element that is not initially visible does not work. Swiping down without anchoring to an element doesn't work either.
example 1
def swipe(self, start_x, start_y, end_x, end_y, duration: int = 0):
actions = ActionChains(self.driver)
actions.w3c_actions = ActionBuilder(self.driver, mouse=PointerInput(interaction.POINTER_TOUCH, "touch"))
actions.w3c_actions.pointer_action.move_to_location(start_x, start_y)
actions.w3c_actions.pointer_action.pointer_down()
actions.w3c_actions.pointer_action.pause(duration / 1000)
actions.w3c_actions.pointer_action.move_to_location(end_x, end_y)
actions.w3c_actions.pointer_action.release()
actions.perform()
example 2
def swipe_1(self, startX, startY, endX, endY):
TouchAction(self.driver).press(startX, startY).wait(1000).move_to(endX, endY).release().perform()
example 3
def swipe_2(self, locator):
self.driver.execute_script('mobile: scrollGesture', {'elementId': locator, 'direction': 'down'})
example 4
def swipe_3(self):
deviceSize = self.driver.get_window_size()
screenWidth = deviceSize['width']
screenHeight = deviceSize['height']
startx2 = screenWidth / 2
endx2 = screenWidth / 2
starty2 = screenHeight * 2 / 9
endy2 = screenHeight * 8 / 9
actions = TouchAction(self.driver)
actions.long_press(None, startx2, starty2).move_to(None, endx2, endy2).release().perform()
example 5
def swipe_till_elem(self, locator):
counter = 100
size = self.driver.get_window_size()
x = int(size['width'] / 2)
start_y = int(size['height'] * 0.8)
end_y = int(size['height'] * 0.2)
actions = TouchAction(self.driver)
while counter != 0:
counter -= 1
actions.press(x=x, y=start_y)
actions.wait(100)
actions.move_to(x=x, y=end_y)
actions.release()
actions.perform()
footer = self.find_elements(locator, time=60)
if footer:
break
example 6
def swipe_up_down(self, direction):
size = self.driver.get_window_size()
x = int(size['width'] / 2)
if direction == 'up':
start_y = int(size['width'] * 0.8)
end_y = int(size['width'] * 0.2)
elif direction == 'down':
start_y = int(size['width'] * 0.2)
end_y = int(size['width'] * 0.8)
actions = TouchAction(self.driver)
actions.press(x=x, y=start_y)
actions.wait(300)
actions.move_to(x=x, y=end_y)
actions.release()
actions.perform()
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|