大家好,又见面了,我是你们的朋友全栈君。如果您正在找激活码,请点击查看最新教程,关注关注公众号 “全栈程序员社区” 获取激活教程,可能之前旧版本教程已经失效.最新Idea2022.1教程亲测有效,一键激活。
Jetbrains全系列IDE使用 1年只要46元 售后保障 童叟无欺
前言
一般我们写接口自动化的时候,遇到复杂的逻辑,都会调用API方法来满足前置条件,Pytest的特性是无法用例之间相互调动的,我们一般只调用自己封装的API方法。
而httprunner支持用例之间的调用,通过RunTestCase
对其他测试用例进行调用,并且还可以导出用例中你所需要的变量,来满足后续用例的的运行。
RunTestCase
RunTestCase
在一个步骤中用于引用另一个测试用例调用。
teststeps = [
Step(
RunTestCase("request with functions")
.with_variables(
**{"foo1": "testcase_ref_bar1", "expect_foo1": "testcase_ref_bar1"}
)
.call(RequestWithFunctions)
.export(*["foo3"])
),
Step(
RunRequest("post form data")
.with_variables(**{"foo1": "bar1"})
.post("/post")
.with_headers(
**{
"User-Agent": "HttpRunner/${get_httprunner_version()}",
"Content-Type": "application/x-www-form-urlencoded",
}
)
.with_data("foo1=$foo1&foo2=$foo3")
.validate()
.assert_equal("status_code", 200)
.assert_equal("body.form.foo1", "bar1")
.assert_equal("body.form.foo2", "bar21")
),
]
RunTestCase(name)
用于指定测试步骤名称,该名称将显示在执行日志和测试报告中。
RunTestCase("request with functions")
.with_variables
与RunRequest里的用法相同
.call
指定你要引用的testcase类名称
.call(RequestWithFunctions)
调用RequestWithFunctions类
.export
指定要导出的变量(可以指定多个),后续的测试步骤可以引用导出的变量
.export(*["foo3", "foo4"])
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/165857.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...