hi, community,
This problem is weird I don’t know what’s causing this error. The problem is when test suite run test object fire status code 500 and when i go to that test object run individually it works fine and gives me status code 200.
Details are as follows.
Global variable
<?xml version="1.0" encoding="UTF-8"?>
<GlobalVariableEntities>
<description></description>
<name>default</name>
<tag></tag>
<defaultProfile>true</defaultProfile>
<GlobalVariableEntity>
<description></description>
<initValue>'http://45.32.31.134:9000/2.5'</initValue>
<name>Global_Url</name>
</GlobalVariableEntity>
<GlobalVariableEntity>
<description></description>
<initValue>''</initValue>
<name>btoId</name>
</GlobalVariableEntity>
</GlobalVariableEntities>
And GET request objects url is as follows
${url}/btos/${btoId}/businesses?
And Test case looks is for verifying HTTP status code is
//All business Of BTO
allBusinessofBtoResponse = WS.sendRequestAndVerify(findTestObject('TestObject'))
'verifying response status code'
WS.verifyResponseStatusCode(allBusinessofBtoResponse, 200)
But it is failing and always give status 500 . but when I that from object it works fine and give me status code 200.
Thanks