Behat, PHP 场景大纲:输出参数
Behat, PHP Scenario outline: outputting param
给定以下行为场景:
Scenario Outline: Bootstrap pages does not encounter the following problems:
Given I am on "<page>"
And I should not see "�"
Examples:
| page |
| web.php |
| logs.php |
| web.php |
| payout.php |
其中一个如果没有通过返回:
0 scenario0 step0m0.02s (23.11Mb)
Given I am on "<page>"
And I should not see "�"
The text "�" appears in the text of this page, but it should not.
Skipped step
问题是我不知道哪个页面出现故障,因为我有 "<page>"
而不是实际页面。有人有想法吗?我在 google 上搜索了这个,但我没有找到任何东西
获得详细的错误堆栈跟踪的解决方案是使用详细选项。
根据您需要的详细程度添加 -v|-vv|-vvv
标志。
给定以下行为场景:
Scenario Outline: Bootstrap pages does not encounter the following problems:
Given I am on "<page>"
And I should not see "�"
Examples:
| page |
| web.php |
| logs.php |
| web.php |
| payout.php |
其中一个如果没有通过返回:
0 scenario0 step0m0.02s (23.11Mb)
Given I am on "<page>"
And I should not see "�"
The text "�" appears in the text of this page, but it should not.
Skipped step
问题是我不知道哪个页面出现故障,因为我有 "<page>"
而不是实际页面。有人有想法吗?我在 google 上搜索了这个,但我没有找到任何东西
获得详细的错误堆栈跟踪的解决方案是使用详细选项。
根据您需要的详细程度添加 -v|-vv|-vvv
标志。