The below is the feature file:
Scenario Outline: Verify logging in navigates user to Home page
Given I navigate to "<url>" in chrome browser
And switch control to Login iframe
When valid "<username>" and "<password>" are entered
And I click on the Login button
Then The user is navigated to Home page
Examples: {'datafile' : 'src/main/resources/data/testData.xls', 'sheetName' : 'loginSheet'}
All lines from feature file are implemented in Step definitions and while executing the Testng.xml file, I am getting the below error.
"org.openqa.selenium.WebDriverException: unknown error: start is not defined" and I also see something like the below in console.
/**
* Auto-generated code snippet by QMetry Automation Framework.
*/
@QAFTestStep(description="I navigate to {0} in chrome browser")
public void iNavigateToInChromeBrowser(String str0){
//TODO: remove NotYetImplementedException and call test steps
throw new NotYetImplementedException();
}
Please help me in resolving this issue, I am new to QAF.