You can use Groovy scripts to work with various entities on all available project levels.
This topic describes how to use a Groovy script to access SOAP operations and REST resources.
Where To Use
There are several ways to run this script:
- As a Groovy Script test step.
- As a setup or teardown script on the project, test suite, or test case level in functional tests.
Example
The following code demonstrates how to access the login rq
SOAP operation in the sample SOAP project.
Groovy
// Accessing the interface.
myInterface = testRunner.testCase.testSuite.project.getInterfaceByName("ServiceSoapBinding")
// Accessing the operation.
myOperation = myInterface.getOperationByName("login")
// Accessing the request.
myRequest = myOperation.getRequestByName("login rq")
myInterface = testRunner.testCase.testSuite.project.getInterfaceByName("ServiceSoapBinding")
// Accessing the operation.
myOperation = myInterface.getOperationByName("login")
// Accessing the request.
myRequest = myOperation.getRequestByName("login rq")
See Also
Groovy Script Test Step
Setup, TearDown, and Report Scripts
Groovy Scripts
Scripting