-
Notifications
You must be signed in to change notification settings - Fork 232
Make it possible to relax strict Gherkin scenario validation #130
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Make it possible to relax strict Gherkin scenario validation
This doesn't work when the |
It also doesn't work with the |
Also needs to handle steps in background. |
my god, so your background contains something else than given? |
what's your code, please show the structure |
Currently we have a feature like this: Feature: Search
Background:
When I visit "/search"
And I wait for the content to load
Scenario: Search
Then the title should contain the text "Search"
Scenario: Search Antibodies
When I click the link with text that contains "Data"
And I click the link to "/search/?type=antibody_lot"
And I wait for the content to load
Then I should see at least 15 elements with the css selector "ul.nav.result-table > li"
And I should see at least 5 elements with the css selector "div.box.facets > div.facet"
... |
fixed in 2.12.1 please check |
My tests still fail with 2.12.1 because the |
Right, sorry i forgot to fix that as well. Will do today |
2.12.2 is out, please try |
Thanks @bubenkoff. This is now working for me with the scenarios helper and the fixture in conftest.py. |
closes #118. closes #119