TA的每日心情 | 擦汗 12 小时前 |
---|
签到天数: 527 天 连续签到: 4 天 [LV.9]测试副司令
|
1测试积点
问题:
请问如何 实现长按的 持续时间?( long_press duration python)
谢谢大家,不知道这是不是Appium 的bug,在它的API 里面 看到 有一个长按的函数,但它
的持续时间不知道如何调用。
搜了帖子 基本上就是如何长按,但是没有长按 多久。
下面是 它原生的函数
- <div><font face="微软雅黑" size="3">
- </font></div><div><font face="微软雅黑" size="3">def long_press(self, el=None, x=None, y=None, duration=1000):</font></div><div><font face="微软雅黑" size="3">"""Begin a chain with a press down that lasts duration milliseconds</font></div><div><font face="微软雅黑" size="3">"""</font></div><div><font face="微软雅黑" size="3">self._add_action('longPress', self._get_opts(el, x, y))</font></div><div><font face="微软雅黑" size="3">
- </font></div><div><font face="微软雅黑" size="3">return self</font></div>
复制代码
我在谷歌上搜了写方法,但是还是不能实现
action = TouchAction(self.driver)
el = self.driver.find_element_by_id('XXXXX')
action.long_press(el).wait(10000).release().perform()
以上的方法仅能实现,不到1秒的短按,达不到长按10秒的效果
报的是这个错:WebDriverException: Message: u'An unknown server-side error oc
curred while processing the command
|
|