Solved
Forum Discussion
Lucian
6 years agoCommunity Hero
Hi,
I think this is a pretty uncommon scenario. I don't know if this is possible out of the box but maybe we can find something else that would work for you. Can you elaborate on what you are trying to achieve?
白夜有点黑
6 years agoContributor
I want to assign value to testcase properties (hat_id) when run "mvn test -P Test -Dhat_id=789" command, here is pom.xml file like below:
<profile>
<id>Test</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<properties>
<environment>TEST</environment>
<projectFile>hfa-tracker-soapui-project.xml</projectFile>
<testSuite>TS_SendHFARequest</testSuite>
<testCase>TC_SendIMPRequest</testCase>
<hat_id>456</hat_id>
</properties>
</profile>