I am using the ‘Build Data Table’ activity to create a data table:
Now I need to store the username and passwords of the first row into 2 variables called ‘Username’ ‘Password’
example: elephant123 is stored into variable ‘Username’, 123qweasd is stored into variable ‘Password’
Then, when it loops (I already created the loop), I need it to store the username and password of the second row into the same variables ‘Username’ and ‘Password’
example: ‘test123’ is stored into variable ‘Username’, ‘2wsx3edc’ is stored into variable ‘Password’
and continue this until the loop ends (I already know how to end the loop).
How could I accomplish this?
Thanks in advance