Forum Discussion

Yasar's avatar
Yasar
New Contributor
4 years ago
Solved

Groovy scripting - converting string property to integer while sending soap request by setProperty

Hi all, I've created project level property for a node in soap request which is expecting an integer input, when i try to set that property with the desired value in groovy I'm getting below error. ...
  • Yasar's avatar
    Yasar
    4 years ago

    Hi richie ,

    I've found the mistake, i've created a test suite level property but I used setProperty method on project level property in my groovy script, below works fine

    code change:

    testRunner.testCase.testSuite.setPropertyValue("country_name",cin_value)

     

    thanks a lot for ur precious time