You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Steps To Reproduce
Run Cucumber scenario with an excel data provider
Expected behavior
The test should run has many times as there are sets of data
Actual behavior
Exception in thread "main" java.lang.NoClassDefFoundError: io/cucumber/core/gherkin/Location
In Cucumber version 6, the Gherkin folder is at the same level as the core. QAF simply lacks compatibility with Cucumber.
Test case sample
Feature: Create and Delete Group @smoke @datafile:src/test/resources/features/UserData.xls
@sheetName:Groups
Scenario: Create New User Group
Given I click on create group button
When The create user group pop up appears
Then I enter the group name ${Group Name}
Then I enter the group description ${Description}
Then I add user to the group
Then I click on the create group button
And The group must be created with a confirmation message
The text was updated successfully, but these errors were encountered:
@phTrung - did you hear anything from team regarding this compatibility issue.
I am using cucumber 6.8.1 , Test NG 7.1.0 and QAF 3.0.0 using Runner class in my current test framework and I am getting some Null pointer exception
Not sure where I am missing ??? need some help with initial configuration
@CucumberOptions(
features = {"src/test/resources/testCases/"},
glue = { "com.apple.store.service.client.cucumber" },
plugin = {"pretty", "io.qameta.allure.cucumber6jvm.AllureCucumber6Jvm","html:target/cucumber.html","com.qmetry.qaf.automation.cucumber.QAFCucumberPlugin"},
monochrome = false)
Am i missing anything here ?
Thank you for your help
Steps To Reproduce
Run Cucumber scenario with an excel data provider
Expected behavior
The test should run has many times as there are sets of data
Actual behavior
Exception in thread "main" java.lang.NoClassDefFoundError: io/cucumber/core/gherkin/Location
In Cucumber version 6, the Gherkin folder is at the same level as the core. QAF simply lacks compatibility with Cucumber.
Test case sample
Feature: Create and Delete Group
@smoke
@datafile:src/test/resources/features/UserData.xls
@sheetName:Groups
Scenario: Create New User Group
Given I click on create group button
When The create user group pop up appears
Then I enter the group name ${Group Name}
Then I enter the group description ${Description}
Then I add user to the group
Then I click on the create group button
And The group must be created with a confirmation message
The text was updated successfully, but these errors were encountered: