Solved
Forum Discussion
3 Replies
Sort By
- rraghvani
Champion Level 3
For example,
function main() { var name = "Test"; var number = 0; for (var i = 0; i < 10; i++) { number = i; // increment Log.Message(name + number.toString()); } Log.Message(Math.floor(Math.random() * 10)); // Returns a random integer from 0 to 9 }
- KellyWiegandOccasional Contributor
Thank you, but how can I use these string in the keyword test?
I want to do a search in loop, the search criteria for each time is one of these string.
- rraghvani
Champion Level 3
For example, using use code expressions