kamatchipriya16
7 years agoOccasional Contributor
Endpoint is not changed from maven
Hi,
I am generating HTML report from groovy and i integrated with maven.
So in soapui i set the endpoint in property & i called it from script.
(ie)${#Project#endpoint_services}
When i ...
- 6 years ago
I got a solution for this..
In sopaui groovy script i set the property for endpoint like,
testRunner.testCase.testSuite.project.setPropertyValue("endpoint_services", "http://localhost:8080")
${#Project#endpoint_services}
From maven i added the property like,
<projectProperties>
<projectProperty>endpoint_services=http://localhost:8080</projectProperty>
</projectProperties>Now it is working :)