以下是我的验收测试代码片段:
$value= $I->grabFromDatabase('table', 'Settingcolumn', array('userid' => '1'));
if ($value="Y")
{
$I->see('hello world');
}
elseif ($value="N")
{
$I->dontSee('hello world');
}
代码中的if / else语句是否可行?我目前有设置值= N所以hello world隐藏在网页上,但CodeCeption正在跳过if / else,右转到“$ I-> see('hello world');”并且失败了,因为它没有看到你好世界。 *我看到“你好世界” FAIL
答案 0 :(得分:0)
是的,确定你最后可以使用PHP文件,而Codeception会执行整个文件。