如何使用appium在android中实现4次快速点击(0.8秒内)?

问题描述 投票:0回答:2

我尝试过 TapAction、MultiTouch,但花费的时间超过 0.8 秒。如果有解决办法请回复

selenium appium appium-android appium-ios appium-java
2个回答
0
投票

您是否尝试相应地添加 for 循环?

from appium.webdriver.common.touch_action import TouchAction
for i in range(1, 5):
    actions = TouchAction(driver)
    actions.tap(element)
    actions.perform()

0
投票

我尝试过使用循环,但它不适合这种情况。 平均而言,单次点击需要 478 毫秒。

© www.soinside.com 2019 - 2024. All rights reserved.