Trying to clear this:
⚠ features/auth/login.feature:15 outline/title-format Scenario Outline has no "# title-format:" comment; examples will be titled "Example #N".I added the comment and the warning did not move. My file:
# title-format: <username> → <error>
@ui @regression
Scenario Outline: Failed login shows a clear error
When I login with "<username>" and "<password>"
Then I should see the login error "<error>"
Examples:
| username | password | error |
| locked_out_user | secret_sauce | Sorry, this user has been locked out. |
| standard_user | wrong | Username and password do not match |Does it have to be in a particular place?