icopycode
4 years agoOccasional Contributor
Can tests be run across both web apps and desktop?
My company bought the Desktop license only. I would like to be able to run tests that span both desktop and web apps. We have many desktop and web apps that are integrated. A current manual lifecy...
- 7 years ago
Hi,
The groovy script for this is quite simple:
// Identify test step def testCase = testRunner.testCase.testSuite.project.testSuites["Name of your test suite"].testCases["Name of your test case"] def testStep = testCase.testSteps["Name of your SOAP request"] // Run test step testStep.run( testRunner, context )
- 7 years ago
Thanks a ton Lucian for your help. Its working :-)
Could you please help here again.
is there any possibility to send input value for SOAP request from groovy script ?I am using below code snippet. but, facing errors.
testStep.run( testRunner, context.x="5") // i would need to send value 5 to soap requestin soap request, using like this to ${x} in the request message.