pipshowuiautomator2Name:uiautomator2Version:1.2.2Summary:PythonWrapperforAndroidUiAutomator2testtoolHome-page:https://github.com/codeskyblue/uiautomator2Author:codeskyblueAuthor-ema" />

亚洲免费在线-亚洲免费在线播放-亚洲免费在线观看-亚洲免费在线观看视频-亚洲免费在线看-亚洲免费在线视频

詳解python uiautomator2 watcher的使用方法

系統 1763 0

該方是基于uiautomator2如下版本進行驗證的:

            
PS C:\windows\system32> pip show uiautomator2
Name: uiautomator2
Version: 1.2.2
Summary: Python Wrapper for Android UiAutomator2 test tool
Home-page: https://github.com/codeskyblue/uiautomator2
Author: codeskyblue
Author-email: codeskyblue@gmail.com
License: MIT
Location: c:\program files\python36\lib\site-packages
Requires: six, progress, whichcraft, logzero, lxml, adbutils, retry, Pillow, requests, humanize
Required-by: weditor, atx
          

  下面貼出githup上關于該方法的使用

?

            
Watcher
 You can register watchers to perform some actions when a selector does not find a match.
 Register Watcher
 When a selector can not find a match, uiautomator2 will run all registered watchers.
 Click target when conditions match
 d.watcher("AUTO_FC_WHEN_ANR").when(text="ANR").when(text="Wait") \
               .click(text="Force Close")
 # d.watcher(name) ## creates a new named watcher.
 # .when(condition) ## the UiSelector condition of the watcher.
 # .click(target) ## perform click action on the target UiSelector.
 There is also a trick about click. You can use click without arguments.
 d.watcher("ALERT").when(text="OK").click()
 # Same as
 d.watcher("ALERT").when(text="OK").click(text="OK")
 Press key when a condition becomes true
 d.watcher("AUTO_FC_WHEN_ANR").when(text="ANR").when(text="Wait") \
               .press("back", "home")
 # d.watcher(name) ## creates a new named watcher.
 # .when(condition) ## the UiSelector condition of the watcher.
 # .press(
            
              , ..., 
              
                .() ## press keys one by one in sequence.
 Check if the named watcher triggered
 A watcher is triggered, which means the watcher was run and all its conditions matched.
 d.watcher("watcher_name").triggered
 # true in case of the specified watcher triggered, else false
 Remove a named watcher
 # remove the watcher
 d.watcher("watcher_name").remove()
 List all watchers
 d.watchers
 # a list of all registered watchers
 Check for any triggered watcher
 d.watchers.triggered
 # true in case of any watcher triggered
 Reset all triggered watchers
 # reset all triggered watchers, after that, d.watchers.triggered will be false.
 d.watchers.reset()
 Remove watchers
 # remove all registered watchers
 d.watchers.remove()
 # remove the named watcher, same as d.watcher("watcher_name").remove()
 d.watchers.remove("watcher_name")
 Force to run all watchers
 # force to run all registered watchers
 d.watchers.run()
              
            
          

注:里面涉及的watcher_name可以自定義,可以做到見名知意即可

watcher的使用是要先注冊(第9行至20行均是注冊watcher的方法),然后激活watcher(第56行),注意這個激活方法只是一個瞬時激活,就是說使用之后即銷毀,不會一直存于后臺。那這樣的話在實際的使用場景中怎么使用這個功能呢,下面看一段腳本 1 # -*- coding:utf-8 -*-

            
import uiautomator2 as u2
import time
d = u2.connect()
cfg = MTBFConfig()
package = cfg.getstr("Admit", "pkg", "config")
PACKAGELIST = package.split(",")
print(PACKAGELIST)
d.watcher("????????????????????????????????????????????????????????????????????????????????????????????????ALLOW??????").when(text="????????????????????????????????????????????????????????????????????????????????????????????????ALLOW??????").click(text="????????????????????????????????????????????????????????????????????????????????????????????????ALLOW??????")
#d.watchers.run()
print(d.watchers)
time.sleep(2)
pkglen = len(PACKAGELIST)
print(("There are %d package for test") %pkglen)
class Admit(object):
 def main(self):
   for i in range(pkglen):
     k = 0
     for j in range(5):
       if d.info['currentPackageName'] != PACKAGELIST[i]:
         d.app_start(PACKAGELIST[i])
         print(PACKAGELIST[i])
         time.sleep(1)
         k += 1
       if k == 3:
         print("Can not enter "+ str(PACKAGELIST[i]))
         return False
     if PACKAGELIST[i] == 'com.google.android.contacts':
       print("hello")
       if d(description = "Open navigation drawer").exists(timeout = 5):
         d(description = "Open navigation drawer").click()
       if d(text = "Settings").exists(timeout = 5):
         d(text = "Settings").click()
       if d(resourceId="android:id/title", text = "Import").exists(timeout=5):
         d(resourceId="android:id/title", text = "Import").click()
         time.sleep(3)
       if d(resourceId = "android:id/button1", text = "OK").exists(timeout = 5):
         d(resourceId = "android:id/button1", text = "OK").click()
         time.sleep(1)
         d.watchers.run() //在上面OK點擊之后會彈出一個權限訪問的許可,所以這個時候需要激活一次watcher把彈框關掉,以便不影響后續測試,所以就一個原則,哪里可能會有彈框就在哪里激活watcher
if __name__=="__main__":
 ad = Admit()
 ad.main()
          

總結

以上所述是小編給大家介紹的python uiautomator2 watcher的使用方法,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對腳本之家網站的支持!
如果你覺得本文對你有幫助,歡迎轉載,煩請注明出處,謝謝!


更多文章、技術交流、商務合作、聯系博主

微信掃碼或搜索:z360901061

微信掃一掃加我為好友

QQ號聯系: 360901061

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描下面二維碼支持博主2元、5元、10元、20元等您想捐的金額吧,狠狠點擊下面給點支持吧,站長非常感激您!手機微信長按不能支付解決辦法:請將微信支付二維碼保存到相冊,切換到微信,然后點擊微信右上角掃一掃功能,選擇支付二維碼完成支付。

【本文對您有幫助就好】

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描上面二維碼支持博主2元、5元、10元、自定義金額等您想捐的金額吧,站長會非常 感謝您的哦!??!

發表我的評論
最新評論 總共0條評論
主站蜘蛛池模板: 视频在线观看91 | 国产乱在线观看视频 | 欧美精品亚洲精品 | 久久99亚洲精品久久久久 | 99久久99久久精品国产 | 伊人第一页 | 羞羞网站免费观看 | 免费一级欧美毛片 | 激情在线播放免费视频高清 | 男人天堂网在线观看 | 久久久久久综合一区中文字幕 | 国内精品小视频在线 | 免费国产成人午夜私人影视 | 在线欧美视频 | 精品国产一区二区三区在线观看 | 国产精品一区二区久久沈樵 | 精品国产福利 | 婷婷亚洲综合一区二区 | 91夜夜操| 美女被a到爽视频在线观看 美女被cao的视频免费看 | 久久99热在线观看7 久久99热这里只有精品 | 美女一级毛片免费不卡视频 | 亚洲欧美精品久久 | 中文字幕久热精品视频免费 | 色丁香六月 | 色综合久久久久久久久久久 | 高清亚洲| 欧美亚洲国产精品久久 | 国产精品1区2区3区 国产精品1区2区3区在线播放 | 免费看美女隐私的网站 | 好吊妞在线成人免费 | 亚州在线播放 | 好吊妞视频一区二区 | 草草福利影院 | 在线免费观看毛片 | 深夜激情网站 | 色狠狠成人综合色 | 一本久道久久综合中文字幕 | 乱子伦有声小说mp3 仑乱高清在线一级播放 | 欧美大香a蕉免费 | 日韩欧美一二区 |