How to tap and hold (Long press) using appium for Android?

后端 未结 6 1236
渐次进展
渐次进展 2021-02-06 14:06

Is there any code to tap and hold on Appium? i use python , is there any command to support it ?

For double click i used click on element twice, for tap and hold i am no

6条回答
  •  攒了一身酷
    2021-02-06 15:08

    Here is the update for Java Client: 5.0.4

    WebElement recBtn = driver.findElement(MobileBy.id("img_button"));
    new TouchAction((MobileDriver) driver).press(recBtn).waitAction(Duration.ofMillis(10000)).release().perform();
    

提交回复
热议问题