Archive

Archive for July 9, 2010

TestCase and TestStep execution with Groovy…

July 9, 2010 6 comments
TestCase looping
for( c in 0..5 )
testRunner.runTestStepByName( “My Request” )
Categories: SoapUI

Assertions

July 9, 2010 Leave a comment
Name = values.getPropertyValue(“UserName”);
UID = values.getPropertyValue(“UserID”); Read more…
Categories: SoapUI

Properties

July 9, 2010 Leave a comment

Properties

when creating a testsuite or a testcase it is required to send the properties from one step to another step for which there is an option of  ‘Property Transfer’ in soap UI. Especially when you need to transfer the variable to multiple Steps there is a bit of overhead.

The Best practice is to send the properties to higher level and use them.

Read more…

Categories: SoapUI