I created a workflow where uipath fils in a search button with account number. but i have 20 different accounts that need to be filled in. after filling in an account number a screen apear that uipath takes a screenshot of and saves it to a file location.
how can i make it in a way where al 20 accounts are being screenshoted and saved.
You can use while loop like below,
intNo = 1
while intNo <= 20 {
// loop until intNo variable becomes false(21)
// Type in text field and save screenshot
// Increase it by 1
intNo = intNo + 1
}
thank you, the excel file with accountnumbers stored is working. Also type in to search field is working. Only thing is, it is not looping.
all numbers from the excel file are filled in once and one screenshot is taken. i want to fill in one number than take screenshot and save and then to the next account number. so fill in 1930 take screenshot of result save image. Then fill in 0120 take screenshot of result save image. is there a way to get this working?
thank you, that option is working. Only thing now is that it only takes a screenshot and saves it for the last accoutnumber that is typed in. Is there a way to take and save for every accountnumber that is filled in?