Can i join multiple Scenario outlines with multiple examples
Something Like this:
Scenario Outline: Valid Scenario
Given i have written <test>
When i execute <code>
Then i <expect>
Given the test <result>
Then validate the <response>
Then i then validate <query>
*Examples:
|test| | code | |expect |
|1 | |SOPLN | |"input"|
Examples:
|result| | response| |query|
|pass | |200 | |select* from table1|*
And can i use double pipes instead of single pipes |test| | code | |expect | instead of |test| code |expect |