编程语言
首页 > 编程语言> > Appium+python自动化-Appium库中驱动对象driver相关Api

Appium+python自动化-Appium库中驱动对象driver相关Api

作者:互联网

前言:

  Appium中Api整理记录。

API整理记录
contexts(self) 返回当前会话的所有上下文,使用后可以识别H5页面控件  Usage:driver.contexts
current_context 返回当前会话的当前上下文  Usage:driver.current_context
context 返回当前会话的上下文  Usage:driver.context
find_element_by_ios_uiautomation 通过IOS uiautomation查找元素  Usage:driver.find_element_by_ios_uiautomation("elements")
find_element_by_accessibility_id 通过accessibility id查找元素  Usage:driver.find_element_by_accessibility_id("contdesc-id")
scorll(self, origin_el, destination_el) 从元素orgin_el滚动到destination_el元素  Usage:driver.scroll(el1, el2)
drap_and_drop(self, origin_el, destination_el) 将元素origin_el拖拽移动到destination_el目标元素上
tap(self, postions, duration=None) 模拟手指点击(最多可以同时5个手指),可以设置按住时间的长短(毫秒)  Usage:driver.tap([(x,y),(x,y),(x,y),(x,y),(x,y)], 500)
swip(self,start_x,start_y,end_x,end_y,duration=None) 从A点滑动到B点,滑动时间为毫秒  Usage:driver.swip(100,100,100,400,500)--意义:x轴不懂,移动y轴,相当于屏幕往下拉,屏幕内容是从上往下出现
flick(self,start_x,start_y,end_x,end_y) 按住A点快速滑动到B点  Usage:driver.flick(100,100,100,400)--就是快速滑动,没有可滑动的时间的参数
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   

标签:el,Appium,python,self,driver,Usage,100,find
来源: https://www.cnblogs.com/xiaoguoba/p/16350758.html