Hello all,
I am creating an automation test for my company and there is a part where i have to select an element and swipe it left to display to delete button
but i have tried many different methods and can't seem to get it to work
I am using appium 1.5.2 with intellij IDEA
below is the code that i thought would do the trick but it does not! it also shows no error, it just skips the test!
public static void swipeGesture() {
new TouchAction(SessionObject.getAppiumDriver()).longPress(PriceBreakdown.listItemTitles().get(5).getCenter().getX(),PriceBreakdown.listItemTitles().get(5).getCenter().getY()).waitAction(3).moveTo(-936, 427).release().perform();
}
Any help on this would be greatly appreciated
Thanks