I'm trying to do Webservices Testing using QAF 3.0 Below is my BDD for the Test.
Scenario: [WS-2]_[222-xml]_Sample XML Webservices
When I request api "get.mock.xml.menu"
Then I check api response status code is "200"
And I check api response status is "OK"
And I check api response should have xpath '/breakfast_menu'
First three lines are executing without any issues. Internally I'm calling QAF WsStep.
Note: Json path verification is working perfectly without any issues.
StepDef:
@QAFTestStep(description = "I check api response should have xpath {xpath}")
public static void iCheckApiResponseShouldHaveXpath(String xpath) {
WsStep.responseShouldHaveXpath(xpath);
}