I am doing 1 simple db connection test in Robot framework.I am doing as following-
${queryResults1} Query <sql query>
now I want to use the value of ${queryResults1} as input to another query. I am doing
Execute Sql String select * from customer where customer_id=${queryResults1}
here I am getting error .Execute Sql String doesnot get value of queryresult
how can I do this ?
thanks in Advance!!!
${queryResults}` is what you expect it to be?${queryResults[0][0]}in your second query?