python--编写用例脚本
Posted susansu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python--编写用例脚本相关的知识,希望对你有一定的参考价值。
from appium import webdriver
import time
desired_caps = {}
desired_caps[‘platformName‘] = ‘android‘
desired_caps[‘platformVersion‘] = ‘4.4.2‘
desired_caps[‘deviceName‘] = ‘test1‘
desired_caps[‘appPackage‘] = ‘com.xxxxx‘
desired_caps[‘appActivity‘] = ‘.xxxx‘
driver = webdriver.Remote(‘http://localhost/wd/hub‘, desired_caps)
#在输入框中输入值
driver.find_element_by_class_name("xxx.EditText").send_keys("xxx")
#点击事件
driver.find_element_by_id("xxx").click()
# login
driver.find_element_by_id("xxx").click()
#等待2秒
time.sleep(2)
# massage
driver.find_element_by_id("xxx").click()
driver.find_element_by_id("xxx").click()
#退出app
driver.quit()
以上是关于python--编写用例脚本的主要内容,如果未能解决你的问题,请参考以下文章
python+pytest接口自动化(10)-自动化用例编写思路 (使用pytest编写一个测试脚本)
python+pytest接口自动化(10)-自动化用例编写思路 (使用pytest编写一个测试脚本)