IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> Python知识库 -> appium学习总结15 - 数据驱动 -> 正文阅读

[Python知识库]appium学习总结15 - 数据驱动

1、数据驱动

  1. 参数化数据读取外部文件:使用yaml、json数据
  2. 测试步骤读取自外部文件:定制执行引擎
  3. 断言步骤读取自外部文件:定制执行引擎
  4. 整个用例读取自外部文件:动态构建用例

2、参数化的数据驱动

    @pytest.mark.parametrize("keyword, expected_price", yaml.safe_load(open("search.yaml", "r")))
    def test_001(self, keyword, expected_price):
    def test_001(self, keyword, expected_price):
        self.driver.find_element(AppiumBy.ID, "com.xueqiu.android:id/tv_banner").click()
        self.driver.find_element(AppiumBy.ID, "com.xueqiu.android:id/search_input_text").send_keys(keyword)
        self.driver.find_element(AppiumBy.ID, "name").click()
        price = self.driver.find_element(AppiumBy.ID, "current_price")
        # hamcrest定位:from hamcrest import *
        assert float(price.text) > expected_price
        assert "price" in price.get_attribute("resource-id")
        assert_that(price.get_attribute("package"), equal_to("com.xueqiu.android"))

search.yaml的数据格式

- [ pdd, 20]
- [ alibaba, 100]
- [ jd, 10]

3、测试步骤的数据驱动

import pytest
from appium import webdriver
from appium.webdriver.common.appiumby import AppiumBy
from appium.webdriver.webdriver import WebDriver
from hamcrest import *
import yaml


class TestCase:
    def __init__(self, path):
        file = open(path, "r")
        self.steps = yaml.safe_load(file)

    def run(self, driver: WebDriver):
        for step in self.steps:
            element = None
            print(step)
            if isinstance(step, dict):
                if "id" in step.keys():
                    element = driver.find_element(AppiumBy.ID, step["id"])
                elif "xpath" in step.keys():
                    element = driver.find_element(AppiumBy.XPATH, step["xpath"])
                else:
                    print(step.keys())
                if "input" in step.keys():
                    element.send_keys(step["input"])
                else:
                    element.click()
                if "get" in step.keys():
                    text = element.get_attribute(step["get"])
                    print(text)


class TestDemo:

    def setup(self):
        caps = {
            "platformName": "android",
            "deviceName": "008640dd0804",
            "automationName": "uiautomator2",
            "appPackage": "com.xueqiu.android",
            "appActivity": ".view.WelcomeActivityAlias",
            "autoGrantPermissions": "true"
        }

        self.driver = webdriver.Remote("http://localhost:4723/wd/hub", caps)
        self.driver.find_element(AppiumBy.ID, "com.xueqiu.android:id/tv_agree").click()
        self.driver.implicitly_wait(20)

    # 数据驱动:测试步骤的驱动
    def test_001(self):
        TestCase("testcase001.yaml").run(self.driver)

    def teardown(self):
        self.driver.quit()

testcase001.yaml

- id: com.xueqiu.android:id/tv_banner
- id: com.xueqiu.android:id/search_input_text
  input: alibaba
- id: name
- id: current_price
  get: text

4、完整代码

import pytest
from appium import webdriver
from appium.webdriver.common.appiumby import AppiumBy
from appium.webdriver.webdriver import WebDriver
from hamcrest import *
import yaml


class TestCase:
    def __init__(self, path):
        file = open(path, "r")
        self.steps = yaml.safe_load(file)

    def run(self, driver: WebDriver):
        for step in self.steps:
            element = None
            print(step)
            if isinstance(step, dict):
                if "id" in step.keys():
                    element = driver.find_element(AppiumBy.ID, step["id"])
                elif "xpath" in step.keys():
                    element = driver.find_element(AppiumBy.XPATH, step["xpath"])
                else:
                    print(step.keys())
                if "input" in step.keys():
                    element.send_keys(step["input"])
                else:
                    element.click()
                if "get" in step.keys():
                    text = element.get_attribute(step["get"])
                    print(text)


class TestDemo:

    def setup(self):
        caps = {
            "platformName": "android",
            "deviceName": "008640dd0804",
            "automationName": "uiautomator2",
            "appPackage": "com.xueqiu.android",
            "appActivity": ".view.WelcomeActivityAlias",
            "autoGrantPermissions": "true"
        }

        self.driver = webdriver.Remote("http://localhost:4723/wd/hub", caps)
        self.driver.find_element(AppiumBy.ID, "com.xueqiu.android:id/tv_agree").click()
        self.driver.implicitly_wait(20)

    # 数据驱动:测试步骤的驱动
    def test_001(self):
        TestCase("testcase001.yaml").run(self.driver)

    # 数据驱动:参数化的数据
    search_data = yaml.safe_load(open("search.yaml", "r"))
    print(search_data)
    @pytest.mark.parametrize("keyword, expected_price", search_data)
    def test_002(self, keyword, expected_price):
        self.driver.find_element(AppiumBy.ID, "com.xueqiu.android:id/tv_banner").click()
        self.driver.find_element(AppiumBy.ID, "com.xueqiu.android:id/search_input_text").send_keys(keyword)
        self.driver.find_element(AppiumBy.ID, "name").click()
        price = self.driver.find_element(AppiumBy.ID, "current_price")
        # hamcrest定位:from hamcrest import *
        assert float(price.text) > expected_price
        assert "price" in price.get_attribute("resource-id")
        assert_that(price.get_attribute("package"), equal_to("com.xueqiu.android"))

    def teardown(self):
        self.driver.quit()
  Python知识库 最新文章
Python中String模块
【Python】 14-CVS文件操作
python的panda库读写文件
使用Nordic的nrf52840实现蓝牙DFU过程
【Python学习记录】numpy数组用法整理
Python学习笔记
python字符串和列表
python如何从txt文件中解析出有效的数据
Python编程从入门到实践自学/3.1-3.2
python变量
上一篇文章      下一篇文章      查看所有文章
加:2022-03-15 22:28:05  更:2022-03-15 22:28:57 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/15 20:54:26-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码