When Scenario Outline contains step with RegExp in Definition and using example value in Table at the same time then during execution example value is not substituted in step.
For example:
Scenario Outline: <description>
Given Some step with <exampleValue> and use table:
| field | value |
| SomeField | <exampleValue> |
Examples:
| exampleValue |
| myValue |
then during the execution scenario step contains: { field: 'SomeField', value: '\<exampleValue>'} instead of { field: 'SomeField', value: 'myValue'}
When Scenario Outline contains step with RegExp in Definition and using example value in Table at the same time then during execution example value is not substituted in step. For example:
then during the execution scenario step contains: { field: 'SomeField', value: '\<exampleValue>'} instead of { field: 'SomeField', value: 'myValue'}