-
Notifications
You must be signed in to change notification settings - Fork 123
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
Playwright cucumber allure report issue #982
Comments
This issue was reported in the task #625, but closed with the resolution Fixed in 3.0.0-beta.11. |
@Zychkov, are you sure? #625 was about missed parameters for Scenario Outline for cucumbers integration. It was fixed. There is a test: https://github.com/allure-framework/allure-js/blob/main/packages/allure-cucumberjs/test/spec/examples.test.ts (The feature file) |
@baev, yeah, I'm sure.
Dependencies:
What I expect it should look like (same scenario, but in Java): |
I am running my project with Playwright, Cucumber, and Allure Report. I have a feature file as shown below and I am running tests with specific tags, but it is printing all the examples, including those which are not executed.
To Reproduce
Steps to reproduce the behavior:
create a feature file like below
'@Search @regression
Feature: Search - Verify end to end flow
I want to verify Search flow
@Actual @validate-e2e @search
Scenario Outline: Search - I am able to search in the web ""
Given I login the application for ""
When I get the page title
Then I verify details ""
@google
Examples:
| client | pagetitle |
| google | Google |
@amazon
Examples:
| client | pagetitle |
| amazon | Amazon |
@facebook
Examples:
| client | pagetitle |
| facebook | Facebok |
'
Expected behavior
It should display only content related to amazon in example section
Screenshots
please see the attached screenshot and highlighted in red color should not be displayed
Desktop (please complete the following information):
Additional context
please see the attached sample project
The text was updated successfully, but these errors were encountered: