@Telmo_Cardoso in my case, I need to swipe a row to left to view hidden button on right side of it.
I tried your solution but instead of press event, I see tap event happening on row.
I'm not sure what may be going wrong, even I tried longPress instead of press but no luck yet.
Can you please refer to below method and review if it has some issue ?
WebElement rowToSlide = driver.findElement(By.xpath("//XCUIElementTypeApplication[1]//XCUIElementTypeTable[1]/XCUIElementTypeCell[1]"));
Dimension size = rowToSlide.getSize();TouchAction swipe = new TouchAction(driver).press(rowToSlide, size.width / 2 + 50 , size.height / 2).waitAction(1000) .moveTo(rowToSlide, 100, size.height / 2).release().perform();