項目描述:android
Appium Server and Inspector in Desktop GUIs for Mac, Windows, and Linux。git
Appium移動測試中有個很從新的組件Appium-Server,它主要用來監聽咱們的移動設備(真機或模擬器),而後將不一樣編程語言編寫的 appium 測試腳本進行解析,而後,驅動移動設備來運行測試。github
Appium-Server下載地址:https://bitbucket.org/appium/appium.app/downloads/web
但Appium-Server有一兩年沒有更新了。Windows版在2015年末止步於的 AppiumForWindows_1_4_16_1.zip 編程
因而,新的工具 Appium-desktop 來了! 它來繼續 Appium-Server的使命,固然, Appium-Server當前仍然是可用的。app
Appium-desktop項目地址:https://github.com/appium/appium-desktop編程語言
下載地址:https://github.com/appium/appium-desktop/releases工具
根據本身的平臺選擇相關的包進行下載。本文以Windows爲例,因此選擇 appium-desktop-Setup-1.2.4.exe 文件進行下載。測試
安裝過程太簡單了,雙擊 exe 文件,而後,等待安裝完就行了,中間都不須要你設置任何選項。因此,這裏就不貼圖了。ui
安裝完成桌面會生成一個紫色的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新手入門》