Hello, I'm using Serenity BDD along with JBehave, but I think this problem 
is more related with my story setup. I have several scenarios in one story 
but if I want to run only the scenario "Login with valid credentials" 
either by skipping the first or by using a filter +code login_6
The scenario is not executed and the report is empty.

I'm not sure if I'm doing something wrong, or maybe it's an issue. Any 
help? :)

Login
Narrative:
In order to authenticate in the application
As a visitor
I want to be able to use my credentials

Lifecycle: 
Before:
Given the visitor enters in the scenario
And the visitor starts navigating on the homepage
And that DUTCH is chosen if a language blocker is present
And cookies terms are accepted


Scenario: Show login form
Meta:
@code login_1


Given the account widget
When click on login link
Then should see the login form


Scenario: Login with valid credentials
Meta:
@code login_6

Given the login form
When fill the userName <userName> and password <password>
And submit through method <submitMethod>
Then should see the displayed user name <displayedUserName>
And the welcome message <welcomeMessage>

Examples:
| submitMethod |  userName     | password | displayedUserName | 
welcomeMessage |
|    BUTTON    | [email protected] | 12345678 |  Name & Lastname  | message. |


-- 
You received this message because you are subscribed to the Google Groups 
"JBehave User" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send an email to [email protected].
To view this discussion on the web, visit 
https://groups.google.com/d/msgid/jbehave-user/ae51e698-d680-44ca-ae89-a375b1b8c8a9%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to