概述
1. 点击操作很简单:
driver.find_element_by_id('com.android.calculator2:id/eq').click()
2. 输入:
driver.find_element_by_id('com.android.calculator2:id/eq').send_keys('111')
3. 滑屏: 滑动中记得加time.sleep(1)
size = driver.get_window_size() #获取模拟器宽高
x = size['width'] #获取宽
y = size['height'] #获取高
driver.swipe(x*0.5, y*0.85, x*0.5, y*0.25, 200) #向上滑动
driver.swipe(x*0.5, y*0.01, x*0.5, y*0.75, 200) #向下滑动 #0.01 android手机打开下拉框,调大0.01即可普通滑动
driver.swipe(x*0.85, y*0.5, x*0.15, y*0.5, 200) #向左滑动
driver.swipe(x*0.15, y*0.5, x*0.85, y*0.5, 200) #向右滑动
4. 截图
tmap = int(time.time())
driver.get_screenshot_as_file('C:\Users\Administrator\Desktop\api\%s.png' % tmap)
这是以时间戳命名的截图,实际项目中推荐以case来命名截图,方便查找报错位置
5. 安装应用
desired_caps['app'] = 'C:\Users\Administrator\Desktop\api\ff0602.apk'
最后
以上就是饱满茉莉为你收集整理的appium 输入/点击/滑动/截图/安装应用 操作的全部内容,希望文章能够帮你解决appium 输入/点击/滑动/截图/安装应用 操作所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复