- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想在执行我的函数之前执行某个步骤。该步骤将变量作为参数。我无法在 context.execute_steps 中传递它。
eg.
call1 = "version"
call1_method = "get"
context.execute_steps('''When execute api{"method":call1_method, "call":call1}''')
最佳答案
有很多事情可能会发生。我找到了 here如果您使用的是 python 3,则需要通过包含 u
使其成为 unicode前面'''
.我也有点困惑,您必须包含何时,然后或作为执行步骤命令的一部分给出(不仅仅是步骤的名称),但您的示例似乎正在这样做。我对您传递变量的方式感到困惑,但可以告诉您如何使用 execute_steps 并在 Python 2 和 3 中使用行为 1.2.5。
@step('I set the Number to "{number:d}" exactly')
def step_impl(context, number):
context.number = 10
context.number = number
@step('I call another step')
def step_impl(context):
context.execute_steps(u'''when I set the Number to "5" exactly''')
print(context.number)
assert context.number == 10, 'This will fail'
Given I call another step
When some not mentioned step
Then some other not mentioned step
I set the Number to "5" exactly
时执行作为时的一部分
I call another step
.
@step('execute api "{method}" "{version}"')
def step_impl(context, method, version):
# do stuff with passed in method and version variables
@step('I call another step')
def step_impl(context):
context.execute_steps(u'''When execute api "get" "version1"''')
@step('I do the first function')
def step_impl(context):
context.call1 = "version"
context.call1_method = "get"
@step('I call another step')
def step_impl(context):
print(%s and %s are available in this function % (context.call1, context.call1_method)
When I do the first function
And I call another step
...
关于python-behave - 如何在python-behave中将变量参数传递给context.execute_steps,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46940856/
我有一个行为场景大纲,我需要在其中使用竖线字符 - | 作为示例表中的单元格值。但我不知道如何转义这个字符而不被视为列分隔符。当我尝试使用 \| 序列时,出现了 Malformed table 错误。
这个示例代码有效(我可以在文件中写一些东西): from multiprocessing import Process, Queue queue = Queue() def _printer(self
我开始使用 Python Behave,因为我想做一个 API 测试。 目前我偶然发现了一些甚至可能无效的东西,但问题是:我可以在功能之间共享数据吗?我可以将一些存储在数据库或文件中,但也许有一些“内
我正在尝试使用 Cucumber (Behave) 编写测试。 'given' 语句需要能够带一个可选参数,它用于验证字符串中的内容。 这两种情况的示例功能语法是: Given Verify text
我正在尝试使用 Cucumber (Behave) 编写测试。 'given' 语句需要能够带一个可选参数,它用于验证字符串中的内容。 这两种情况的示例功能语法是: Given Verify text
我有以下测试场景: 检查是否已创建具有特定名称的项目 编辑此项目 验证是否已编辑 作为拆卸过程的一部分删除此项目 下面是实现此目的的示例代码:场景: @fixture.remove_edited_
我们正在使用 Behave BDD 工具来实现 API 的自动化。是否有任何工具可以使用我们的行为案例提供代码覆盖率? 我们尝试使用覆盖模块,它不适用于 Behave。 最佳答案 您可以运行任何具有覆
如何在行为 .feature 文件中将列表或字典之类的对象作为参数传递,以便我可以在我的 python 函数步骤中使用该参数?请参阅下面我试图实现的示例: Feature: Scenario: Giv
我创建了一个自定义错误处理程序来处理失败时的屏幕截图 #error_handler.py def screenshot_handler(func): def func_wrapper(self
我有多个示例的场景大纲,如下所示: Examples: | country | type | number | | Poland | A
body { background: url(http://i.imgur.com/LMYkPk3.jpg) no-repeat center center fixed; backgr
我正在尝试实现一个简单的图像轮播,但我无法阻止图像下降到下一行。这是我的 CSS: #gallery-wrap{margin: 0 auto; overflow: hidden; width: 532
我有一个状态标签,它根据以下内容显示带有彩色边框的消息当前状态。消息本身可能会有所不同(即可以有多个消息到 ERROR),但 CLEAR 状态不同,因为它永远不应该显示任何消息。 使用示例 setSt
我目前正在使用 Behave(Python 的 BDD)并且一直在挖掘源代码以了解 @given、@when 和 @then 正在声明装饰器。 我走得最远的地方是查看 step_registry.py
我有一系列 PHPUnit 测试来验证类“A 类”。 我有另一个类,“B 类”,它扩展了 A 类。 有没有一种好的方法可以在不复制测试代码的情况下测试“B 类通过了 A 类的测试”,或者换句话说“B
如标题所示,我希望在场景大纲之前运行一些特定的配置/环境设置步骤。我知道有 Background 可以针对场景执行此操作,但 Behave 将场景大纲拆分为多个场景,从而为场景大纲中的每个输入运行后台
考虑一个 Behave 场景: When some magic number is generated Then the number should be greater than 5 所以我有一个生
有没有办法告诉 behave 在步骤实现中跳过当前步骤? 类似于: @given("bla bla bla") def step(): skip_current_step() 用例是我想检查是
我正在使用 python-behave 进行 BDD 测试,我必须从命令行传递一个 URL(例如 www.abc.com)。 $behave -u "www.abc.com" 为此,我已阅读 beha
有人可以告诉我如何使用 Python 在 Behave 中再次运行失败的测试吗? 如果失败,我想自动重新运行失败的测试用例。 最佳答案 行为库实际上有一个 RerunFormatter这可以帮助您重新
我是一名优秀的程序员,十分优秀!