Appium-desktop安裝與使用
Appium-desktop是什麽?
項目描述:
Appium Server and Inspector in Desktop GUIs for Mac, Windows, and Linux。
Appium移動測試中有個很重新的組件Appium-Server,它主要用來監聽我們的移動設備(真機或模擬器),然後將不同編程語言編寫的 appium 測試腳本進行解析,然後,驅動移動設備來運行測試。
Appium-Server下載地址:https://bitbucket.org/appium/appium.app/downloads/
但Appium-Server有一兩年沒有更新了。Window版在2015年底止步於的 AppiumForWindows_1_4_16_1.zip
於是,新的工具 Appium-desktop 來了! 它來繼續 Appium-Server的使命,當然, Appium-Server當前仍然是可用的。
下載與安裝:
Appium-desktop項目地址:https://github.com/appium/appium-desktop
下載地址:https://github.com/appium/appium-desktop/releases
根據自己的平臺選擇相關的包進行下載。本文以Windows為例,所以選擇 appium-desktop-Setup-1.2.4.exe 文件進行下載。
安裝過程太簡單了,雙擊 exe 文件,然後,等待安裝完就好了,中間都不需要你設置任何選項。所以,這裏就不貼圖了。
運行與使用:
安裝完成桌面會生成一個紫色的appium 圖標,雙擊打開。
默認顯示監控的 host 和 port ,這和 Appium-Server中是一致的。點擊 “Start Server V 1.7.1” 按鈕啟動服務。
現在啟動 啟動你的移動設備(真機或模擬器),編寫 Appium 自動化測試腳本,可以通過Appium-desktop 來運行測試了。
以下為Python + Appium-Python-Client庫所編寫的測試腳本。
#coding=utf-8 from appium import webdriver desired_caps= {} desired_caps[‘platformName‘] = ‘Android‘ desired_caps[‘platformVersion‘] = ‘6.0‘ desired_caps[‘deviceName‘] = ‘Android Emulator‘ desired_caps[‘appPackage‘] = ‘com.android.calculator2‘ desired_caps[‘appActivity‘] = ‘.Calculator‘ driver = webdriver.Remote(‘http://localhost:4723/wd/hub‘, desired_caps) driver.find_element_by_name("1").click() driver.find_element_by_name("5").click() driver.find_element_by_name("9").click() driver.find_element_by_name("delete").click() driver.find_element_by_name("9").click() driver.find_element_by_name("5").click() driver.find_element_by_name("+").click() driver.find_element_by_name("6").click() driver.find_element_by_name("=").click() driver.quit()
運行效果如上圖右半部分。
如果你看不懂本文,請參考我的《Appium新手入門》
http://www.testclass.net/appium/
Appium-desktop安裝與使用