Solved
Forum Discussion
NewAutoTester
7 years agoContributor
Hi,
When we run the ReadyAPI test via testrunner.bat with default parameters we could see the events is triggered whereas from cucumber it does not.
testrunner.bat command used:
"C:\Program Files\SmartBear\ReadyAPI-2.6.0\bin\testrunner.bat" -sTestSuite1 "-cTestCase1" -r -a -j -f${WORKSPACE} "-RJUnit-Style HTML Report" -FXML "-EDefault environment" "C:\Users\<userID>\Soap UI\SoapUIProject"
Below are the commands that are used in cucumber to run the test cases.
WsdlProjectPro project = new WsdlProjectPro("src/test/resources/xml/SoapUIProject"); WsdlTestCase testCase = project.getTestSuiteByName("TestSuite1").getTestCaseByName("TestCase1"); WsdlTestCaseRunner runner = testCase.run(new PropertiesMap(), false);
Thank You.
nmrao
7 years agoCommunity Hero
Haven't done myself using cucumber.
You may want to see this article?
http://www.thinkcode.se/blog/2011/11/16/testing-a-web-service-with-soapui-junit-maven-and-cucumber
You may want to see this article?
http://www.thinkcode.se/blog/2011/11/16/testing-a-web-service-with-soapui-junit-maven-and-cucumber
- TanyaYatskovska7 years ago
Alumni
Hi NewAutoTester,
It looks like the article Rao has found should help you resolve the issue. Please let us know if you still need any more assistance.
- NewAutoTester7 years agoContributor
Hi Tanya,
rao -- Thank you for the infomation.
We tried to use SoapUITestCaseRunner but it does not allow us to set TestCase property,so we are using WsdlProjectPro which does not trigger the SoapUI Events.
Regards.