Forum Discussion

jnickgo's avatar
jnickgo
Occasional Contributor
8 years ago

Add or Build HTTP Request TestStep to Test Case through Groovy Script

Hello,

 

I would like to create a new Test Step to an existing Test Case, I would like this to be an HTTP Request type.

 

I've seen and completed examples of creating Groovy Test Steps to an existing Test Case, see below:

 

def project = context.testCase.testSuite.project;
def testSuite = project.getTestSuiteByName("Library");
def testCase = testSuite.getTestCaseByName("Modified Transactions");


def newStep = testCase.addTestStep("groovy", "HelloGroovy").setScript("log.info 'Hello'");

However, I would like to add an HTTP Request type and complete the necessary properties, endpoints and request, etc...

 

It looks like this post is discussing somewhat what I want to do, how can I find the definition of all the step types, it only has EMAIL?

 

Any help is most welcome.

2 Replies

  • nmrao's avatar
    nmrao
    Champion Level 3
    What is your use case? Why do you want to do so while it is easy to add the step in UI?
    • jnickgo's avatar
      jnickgo
      Occasional Contributor

      Hello nmrao,

       

      Normally I would, in this case though we are pulling in a undetermined set of records from a Data Source and changes with each cycle.  So, it seems to me in this case it would be a better solution to dynamically generate the request steps based on the return from the datasource for these test cases.


      Thanks