我有一个场景大纲如下:
Scenario Outline: Create Request Custom Export With XML, Comma Delimited, Tab Delimited
Given a user has entered the following data
| Custom Export | File Format | Vendor |
| Custom Export 1 | <File Format> | 001_TestsVendor_Rp |
When I save
Examples:
| File Format |
| XML |
| Comma Delimited |
| Tab Delimited |
但是当我运行场景时,没有调用场景大纲。但是正常情况下运行良好。代码中是否需要进行任何修改?