gpt4 book ai didi

php - Behat:在场景中的步骤之间使用变量

转载 作者:行者123 更新时间:2023-12-04 20:41:23 25 4
gpt4 key购买 nike

如何在 behat 中的一个场景中的步骤之间使用变量?
我需要存储 $output 的值,然后在第二步中使用它。

假设我有以下结构:

class testContext extends DefaultContext
{
/** @When /^I click "([^"]*)"$/ */
public function iClick($element) {
if ($element = 2){
$output = 5
}
}


/** @When /^I press "([^"]*)"$/ */
public function iPress($button) {
if($button == $output){
echo "ok";
}
}
}

最佳答案

上下文类可以是有状态的;场景的所有步骤都将使用相同的上下文实例。这意味着您可以使用常规类属性来反转步骤之间的状态:

class testContext extends DefaultContext
{
private $output = NULL;

/** @When /^I click "([^"]*)"$/ */
public function iClick($element)
{
if ($element = 2) {
$this->output = 5;
}
}


/** @When /^I press "([^"]*)"$/ */
public function iPress($button)
{
if ($this->output === NULL) {
throw new BadMethodCallException("output must be initialized first");
}

if ($button == $this->output) {
echo "ok";
}
}
}

关于php - Behat:在场景中的步骤之间使用变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34421841/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com