unable to pass value to Test case custom property using groovy?
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-06-2017
12:40 PM
07-06-2017
12:40 PM
unable to pass value to Test case custom property using groovy?
5 REPLIES 5
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-06-2017
12:44 PM
07-06-2017
12:44 PM
Looks like the paramter order is reversed
username and domain
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-06-2017
12:52 PM
07-06-2017
12:52 PM
Tried same result
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-06-2017
01:42 PM
07-06-2017
01:42 PM
has answer to your question
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-07-2017
02:51 AM
07-07-2017
02:51 AM
Still ,no solution
just want to pass a value in test step custom property
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-07-2017
07:52 AM
07-07-2017
07:52 AM
I have tried the link below it works for me
https://www.soapui.org/scripting-properties/tips-tricks.html
Below is what I did and it works for me
testRunner.testCase.setPropertyValue( "Firstname", "Sanjeet" )
def testCaseProperty = testRunner.testCase.getPropertyValue( "Firstname" )
