Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我尝试过 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()