前提:
成都網(wǎng)絡(luò)公司-成都網(wǎng)站建設(shè)公司創(chuàng)新互聯(lián)10年經(jīng)驗成就非凡,專業(yè)從事網(wǎng)站設(shè)計、成都網(wǎng)站制作,成都網(wǎng)頁設(shè)計,成都網(wǎng)頁制作,軟文發(fā)稿,廣告投放等。10年來已成功提供全面的成都網(wǎng)站建設(shè)方案,打造行業(yè)特色的成都網(wǎng)站建設(shè)案例,建站熱線:18982081108,我們期待您的來電!在xcode中打開模擬器,并安裝上 待測APP;
操作:
step1.打開appium圖形界面
step2.appium 設(shè)置如下步驟(一定要按照官方步驟一步步配置):
Start Appium GUI app
Open Developer Settings of Appium GUI app
Put a tick in Enabled
Put a tick in Custom Server Flags
In the text field of Custom Server Logs put --native-instruments-lib
Open General Settings and make sure Server Address is 0.0.0.0 and Port is 4725
Open iOS Settings
In iOS Settings, Basic tab
Add App Path, mine is /Users/temp_user/Downloads/UICatalog.app (yes, this is the popular tutorial app) (查看下面的幫助部分,找到被測APP正確的路徑)
Force Device, mine is iPhone 5, Platform 9.2, if you still get errors, in the appium log available devices are listed, find them and select to force device with data from the list or find device from xcode simulators list
In iOS Settings, Advanced tab
Put a tick in Use Native Instruments Library
Put a tick in Instruments Launch Timeout, add 900,000 ms
Press Launch btn in Appium GUI app ---點擊 launch 按鈕后,變成 stop 按扭;
Press Inspector btn in Appium GUI app ---上圖中的放大鏡圖標(biāo),點擊后 自動拉起 模擬器中的待測應(yīng)用,同時出現(xiàn)如下畫面供定位元素用;
按照上面步驟,配置完成后,可打開inspector 界面,這是進(jìn)行appium 測試的第一步!
通過inspector,可以查看 不同頁面上的元素分布,并進(jìn)行 元素定位與查找。。
附小幫助:
1. 模擬器的目錄在這里:
/Users/你當(dāng)前登陸的用戶名/Library/Application Support/iPhone Simulator/
你的App被XCode Build在這里:
/Users/你當(dāng)前登陸的用戶名/Library/Developer/Xcode/DerivedData/YOURPROJECTNAME_SOMETHINGSOMETHING/Build/Products
2. mac 下顯示所有文件目錄的方式 (隱藏文件夾)
在Terminal中復(fù)制或輸入以下命令(區(qū)分大小寫):
“defaults write com.apple.Finder AppleShowAllFiles YES”
設(shè)置完成后,重啟下Finder即可生效;
3. 在Finder中快速定位某個路徑 ,請按下 "command+ shift+ G" ;