Export test results does not display multiple arguments
Hello, I'm using watir and cucumber to drive UI. Scenarios which uses multiple arguments are not displayed when exporting test result whether i'm using html or xml format. E.g: And I complete the order with: | name | address | email | pay_type | | Sam Smith | 1213 Main Street | sam@example.com | Credit card |
It will display only "And I complete the order with:" in exported test results.
Is there a way do display the entire data in test results ?
Thank you,
Dan
请先登录再写评论。
Hello Dan,
It will display only "And I complete the order with:" in exported test results.
RubyMine shows "Examples" section under "Scenario Outline" group. Then for each examples table row RubyMine show dynamic scenario, e.g. "Scenario: Line: 13" with substituted scenario outline params. Thus name, address, etc. params will be substituted in corresponding steps names. See screenshot

P.S: Also any suggestions are welcome. Seems we cannot use Examples section rows as scenarios names because they may be too long.