I am new to this,
Black shirt is my element, and I need to Swipe right, its co ordinates are [232 699] [1064,762] I tried with this code it was able to select the element, but was not swiping right.
TouchAction touchAction = new TouchAction(driver);
touchAction.longPress(PointOption.point(startx, starty))
.waitAction(WaitOptions.waitOptions(ofSeconds(1)))
.moveTo(PointOption.point(endx, endy))
.release()
.perform();