我尝试过 TapAction、MultiTouch,但花费的时间超过 0.8 秒。如果有解决办法请回复
您是否尝试相应地添加 for 循环?
from appium.webdriver.common.touch_action import TouchAction
for i in range(1, 5):
actions = TouchAction(driver)
actions.tap(element)
actions.perform()
我尝试过使用循环,但它不适合这种情况。 平均而言,单次点击需要 478 毫秒。