python自動化測試(一)--uiautomator總結

highhand發表於2021-09-09

1.初始化

  • 單個裝置

from uiautomator import device as d
  • 多個裝置

from uiautomator import Device
d=Device('014E05DE0F02000E')

2.按鍵操作

KEYS = ["home","back","left",'right',"up","down","center","menu","search","enter","delete","recent","volume_up", "volume_down", "volume_mute","camera","power"] for key in KEYS:     print key
     d.press(key)
     time.sleep(1)

3.座標操作

#點屏d.click(2023, 1256)# #長按螢幕# long click (x, y) on screen
 d.long_click(201, 0235)

4.滑動

# swipe from (sx, sy) to (ex, ey)d.swipe(sx, sy, ex, ey)# # swipe from (sx, sy) to (ex, ey) with 10 stepsd.swipe(sx, sy, ex, ey, steps=10)

5.拖動

# drag from (sx, sy) to (ex, ey)d.drag(sx, sy, ex, ey)# drag from (sx, sy) to (ex, ey) with 10 stepsd.drag(sx, sy, ex, ey, steps=10)

6.螢幕

print d.info# 開啟螢幕d.screen.on()# 關閉螢幕d.screen.off()# # natural 或者 n 代替# # left 或者 l 代替# # right 或者 r 代替# # upsidedown或 u(不能設定)# #獲取orientation(方向),可能是上述中的任意一種orientation = d.orientationprint orientation# #設定定向和凍結旋轉。# #說明:"upsidedown"不能用於Android 4.3 以前的版本d.orientation="l"d.orientation="r"d.orientation="n"# 開啟通知訊息欄,不能用於Android 4.3以前的版本d.notification()# 開啟快速設定欄,不能用於Android 4.3以前的版本d.open.quick_settings()# 等待當前視窗空閒d.wait.idle()# 等待直到視窗發生重新整理事件d.wait.update()

7.監視器

#當一個選擇器找不到匹配時,uiautomator 會執行全部已經註冊的觀察者#條件匹配時點選目標d.watcher("AUTO_FC_WHEN_ANR").when(text="ANR").when(text="Wait").click(text="Force Close")#條件匹配時按下按鍵d.watcher("AUTO_FC_WHEN_ANR").when(text="ANR").when(text="Wait").press("back", "home")

8.選擇器

#選擇器支援以下引數# text,textContains,textMatches,textStartsWith# className, classNameMatches# description,descriptionContains,descriptionMatches,descriptionStartsWith# checkable,checked,clickable,longClickable# scrollable,enabled,focusable,focused,selected# packageName, packageNameMatches# resourceId, resourceIdMatches# index, instanced(text="Settings").clear_text()  # clear the text(清除文字資訊)d(text="Settings").set_text("My text...")  # set the text(設定文字資訊)d(text="Settings").click()
d(text="Settings").long_click()#d(text="Settings").drag.to(x, y, steps=100)d(text="Settings").drag.to(text="Clock", steps=50)
d(text="Settings").swipe.right()
d(text="Settings").swipe.left(steps=10)
d(text="Settings").swipe.up(steps=10)
d(text="Settings").swipe.down()# d(text="Settings").gesture((sx1, sy1), (sx2, sy2)).to((ex1, ey1), (ex2, ey2))# d().gestureM((sx1, sy1), (sx2, sy2),(sx3, sy3)).to((ex1, ey1), (ex2, ey2),(ex3,ey3))d(text="Settings").wait.exists(timeout=3000)
d(text="Settings").exists(timeout=3000)
d(text="Settings").wait.gone(timeout=1000)



作者:Godric_wsw
連結:


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/810/viewspace-2818192/,如需轉載,請註明出處,否則將追究法律責任。

相關文章