appium 下 python 脚本自动化测试iOS APP 实例

环境:Mac,Xcode, appium python
本文基于appium 环境搭建成功后。如何使用python 编写脚本测试iOS APP

1.下载python-client https://github.com/appium/python-client
2.在终端 打开到已经下载的文件目录下执行 python setup.py install
3. 打开apppium 桌面版。点击 start session (host,port 不变,默认host 0.0.0.0 port: 4723)
4. 创建一个demo.py 文件
5. 代码如下:
‘import unittest
from appium import webdriver
from appium.webdriver.common.touch_action import TouchAction
desired_caps = {}
desired_caps[‘platformName’] = ‘iOS’
desired_caps[‘platformVersion’] = ‘10.3’
desired_caps[‘deviceName’] = ‘设备名’
desired_caps[‘bundleId’] = ‘项目的bundleId’
desired_caps[‘udid’] = ‘测试手机的udid’
desired_caps[‘app’] = ‘/Users/xiaoMing/Desktop/testDemoipa/testDemo.ipa’ // 必须先将项目打包ipa,此处传入ipa 路径
driver = webdriver.Remote(‘http://localhost:4723/wd/hub‘, desired_caps)
el = driver.find_element_by_accessibility_id(‘Button’) // Button 是通过appium 采集到的对应按钮的id
action = TouchAction(driver)
action.tap(el).perform() // 执行点击事件

你可能感兴趣的:(iOS开发,ios,自动化测试)