Skip to content
Advertisement

Need to select a value from table and store it into variable

Hello everyone I am currently working on some testing project and I am having a little problem. Using selenium, I need to SendKey in specific element but instead of fixed value i need to use value (data) from my database. Can anyone help me with how to retrieve single value from database and store it in a variable so i can use it later.

Thank you and sorry for a noobish question – see code below:

Advertisement

Answer

Use conditions to limit the result:

Select data SELECT TOP 1 RequestID FROM AutomaticPayment // Always returns 1 row

Or

And maybe other ways.

Get value

Or

User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement