Loops in SAP Automation

How to put loops for selectors in SAP Automation like there is a particular process -
1.press the start
2.save the sheet
3.next
these steps should be done for 20 times how to do that

Hi @anjani_priya

You can loop 20 times by using Range like below:

image

Hope it will helps you :slight_smile:

Hi @anjani_priya

->Intialize an int variable and assign the value as 1.
->use the assign activity and regex expressions and extract the end value from the application and convert that to integer variable.
->After that use the while loop and give the condition as count <= End Variable.
->within that while loop give the necessary actions like to save and click the next button.

Regards

can you send the regex functions for the pop up field
Capture51

HI @anjani_priya

(?<=Block\s*\d+.*)(\d+)(?=\:)

Regards

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.