Hi Chirag,
could you please help me know if QAF support all keywords that cucumber includes? I've installed QAF gherkin editor & it does work as expected. It simply doesn't execute a scenario when background is included. please see below
scenario
@login
Feature: Test User's ability to login to application
Description: The purpose of feature file is to test login.
Background: Login to App
Given Login to myApp
Scenario: Log in & apply a select all filter
And Click on column & apply Select All filter
Then Logout from App
Here is an .xml
<suite name=" Test Suite" verbose="0" parallel="tests" thread-count="2">
<test name="scenarios" enabled="true">
<parameter name="
driver.name" value="chromeDriver"></parameter>
<groups>
<run>
<include name="@login" />
</run>
</groups>
<classes>
<class
name="com.qmetry.qaf.automation.step.client.gherkin.GherkinScenarioFactory" />
</classes>
</test>
</suite>
Thanks in advance.