主頁 > 知識庫 > appium測試之APP元素定位及基本工具介紹

appium測試之APP元素定位及基本工具介紹

熱門標(biāo)簽:企業(yè)微信地圖標(biāo)注 鶴壁手機(jī)自動(dòng)外呼系統(tǒng)違法嗎 銀川電話機(jī)器人電話 B52系統(tǒng)電梯外呼顯示E7 地圖標(biāo)注多個(gè) 怎么辦理400客服電話 沈陽防封電銷電話卡 萊蕪電信外呼系統(tǒng) 高德地圖標(biāo)注收入咋樣

添加配置

這里跟我們之前所說的appium測試工具的配置差不多。

deviceName:設(shè)備名稱

platformName:測試平臺(tái)

platformVersion:平臺(tái)版本

appPackage:測試app包名

appActivity:測試app啟動(dòng)入口

那么寫道Pycharm里面就是:

from appium import webdriver
 
desired_capas={
    'deviceName':'127.0.0.1:62001',
    'platformName':'Android',
    'platformVersion':'5.1.1',
    'appPackage':'net.csdn.csdnplus',
    'appActivity':'.activity.MainActivity',
    'noReset':True  # True沒有清除緩存,False清除app緩存的操作
}
rt = webdriver.Remote('http://127.0.0.1:4723/wd/hub',desired_capas)

有沒有看著很眼熟,實(shí)例化這一步括號里面的操作是我們appium連接界面的那個(gè)配置,后面跟著的就是配置參數(shù)了。

放在appium工具里面就是這樣:

這里我上面用的是夜神模擬器,下面用的是雷電模擬器,里面有一些其他的參數(shù)都可以自己加進(jìn)去。

這里用的是某站的界面,appium連接之后就可以在這里操作,模擬器里面的界面也會(huì)隨之而動(dòng)。

uiautomatorviewer使用介紹

此功能在Android SDK中自帶,在tools文件夾下

等抓取完之后就會(huì)呈現(xiàn)出界面了

本章兩個(gè)工具就介紹到這里了,兩個(gè)各有好處,各有所短,后續(xù)還會(huì)有其他的工具介紹。

元素定位

方法:id定位,name定位(text定位),class_name定位, accessibility_id定位,xpath定位等 (目前1.5版本的已經(jīng)不支持name定位了),所以APP的定位與selenium定位除了個(gè)別的定位方法不同之外,其他的基本都有類似之處。

        id定位 根據(jù)元素的resource-id屬性值進(jìn)行定位

        name定位 根據(jù)元素的text屬性值進(jìn)行定位 Appium1.5之后移除了這種方式

        class_name定位 根據(jù)元素的class屬性值進(jìn)行定位

        accessibility_id定位 根據(jù)元素的content-desc屬性值進(jìn)行定位Android (IOS->label或name屬性)

        xpath定位 uiautomatorview沒有xpath路徑

        在appium中使用xpath定位需要自己去寫xpath路徑

          Xpath用法:find_element_by_xpath("http://標(biāo)簽名[@屬性名稱= '屬性值']")                              

          如:find_element_by_xpath("http://android.widget.TextView[@text= '同意']") 

          如:find_element_by_xpath("http://*[@text= '電子郵件']") 星號表示模糊匹配

id定位

注:定位工具你隨意,這里我打開的網(wǎng)易云,定位左上角的按鈕,點(diǎn)擊操作

from selenium import webdriver 
desired_capas = {
  "deviceName": "emulator-5554",
  "platformName": "Android",
  "appPackage": "com.netease.cloudmusic",
  "appActivity": ".activity.MainActivity",
  "platformVersion": "7.1.2",
  "noReset": "True"
}
rt = webdriver.Remote('http://127.0.0.1:4723/wd/hub',desired_capas)
rt.find_element_by_id('com.netease.cloudmusic:id/menu_icon').click()

這里你會(huì)發(fā)現(xiàn)這里有這么一個(gè)http://127.0.0.1:4723...這里是用于連接appium界面的,但是我元素定位工具使用的是 uiautomatorviewer,這兩者不沖突,需打開appium才能使用哦。只是appium里面自帶了一個(gè)定位工具罷了。

class name定位

from selenium import webdriver
desired_capas = {
  "deviceName": "emulator-5554",
  "platformName": "Android",
  "appPackage": "com.netease.cloudmusic",
  "appActivity": ".activity.MainActivity",
  "platformVersion": "7.1.2",
  "noReset": "True"
}
rt = webdriver.Remote('http://127.0.0.1:4723/wd/hub',desired_capas)
rt.find_element_by_id('com.netease.cloudmusic:id/menu_icon').click()
rt.find_element_by_class_name('android.widget.TextView').click()

accessibility_id定位

這個(gè)定位方法說來也奇怪,這個(gè)定位方法我空了兩天,因?yàn)橹芭苁钦也坏竭@個(gè)方法的,也就是不可用,具體原因不詳,不過官網(wǎng)無消息證明,此處就此放過,后續(xù)發(fā)現(xiàn)可以使用及時(shí)補(bǔ)上。

xpath定位

這里兩個(gè)都是可以的,隨意,切記uiautomatorview無xpath定位給出哦。

from selenium import webdriver 
desired_capas = {
  "deviceName": "emulator-5554",
  "platformName": "Android",
  "appPackage": "com.netease.cloudmusic",
  "appActivity": ".activity.MainActivity",
  "platformVersion": "7.1.2",
  "noReset": "True"
}
rt = webdriver.Remote('http://127.0.0.1:4723/wd/hub',desired_capas)
rt.find_element_by_id('com.netease.cloudmusic:id/menu_icon').click()
rt.find_element_by_class_name('android.widget.TextView').click()
rt.find_element_by_xpath('//*[@text="手機(jī)號登錄"]').click()

xpath的定位方式看個(gè)人,復(fù)制還是自己寫,自己寫一半代碼還是全文字匹配,都是可以的

        有元素定位就會(huì)有元素組定位,元素組定位跟selenium類似,都是需要列表取值的方式進(jìn)行定位。

1. driver.find_elements_by_id()[a]

2. driver.find_elements_by_name()[b]

3. driver.find_elements_by_accessibility_id()[c]

4. driver.find_elements_by_xpath()[d]

APP元素定位會(huì)有很多重復(fù)的元素,絲毫不亞于web界面元素,更多關(guān)于appium測試APP元素定位及基本工具的資料請關(guān)注腳本之家其它相關(guān)文章!

您可能感興趣的文章:
  • 詳解appium自動(dòng)化測試工具(monitor、uiautomatorviewer)
  • Python3 + Appium + 安卓模擬器實(shí)現(xiàn)APP自動(dòng)化測試并生成測試報(bào)告
  • python爬蟲之Appium爬取手機(jī)App數(shù)據(jù)及模擬用戶手勢
  • Python+appium框架原生代碼實(shí)現(xiàn)App自動(dòng)化測試詳解

標(biāo)簽:湘西 呼倫貝爾 銀川 安慶 呼倫貝爾 三亞 烏魯木齊 葫蘆島

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《appium測試之APP元素定位及基本工具介紹》,本文關(guān)鍵詞  appium,測,試之,APP,元素,定,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《appium測試之APP元素定位及基本工具介紹》相關(guān)的同類信息!
  • 本頁收集關(guān)于appium測試之APP元素定位及基本工具介紹的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章