我正在尝试以编程方式收集场景的所有信息(标题,步骤),而我尝试使用[BeforeStep]
之类的Hooks
和ScenarioContext.Current.StepContext.StepInfo.Text
来收集步骤的信息,但是对于失败的测试用例,不会执行此挂钩。
还有另一种收集所有信息的方法吗?
我想收集功能文件中写入的相同信息:
Scenario: Add two numbers
Given I have entered 50 into the calculator
And I have entered 70 into the calculator
When I press add
Then the result should be on the screen
| title | value |
| test | 123 |