I have two parameters [username and password]. These two could be read from excel into the API. But when I use these values in the API, I could not get the response in the API. Kindly help me with the solution. Thanks in advance.
I am using excel to read the parameters.
println ("...Fetching Username : "+Username)
println (".. Fetching Password : "+Password)
WS.sendRequest(findTestObject('SIT_BDA/LoginAPI',[ ('Username'): Username, ('Password') : Password]))
I wanted to use the username and password which are being read from the excel and get the response in the API.