Forum Discussion
SmartBear_Suppo
Alumni
12 years agoHi,
You can add a test case level property and add set uuid and then perform a get data(point and click) to add the value on a different test step,
You can generate a unique ID using in a groovy script TestStep,
Thanks,
Jeshtha
You can add a test case level property and add set uuid and then perform a get data(point and click) to add the value on a different test step,
You can generate a unique ID using in a groovy script TestStep,
def uuid = UUID.randomUUID()
testRunner.testCase.setPropertyValue( "uuid", uuid )
Thanks,
Jeshtha