Hello there,
May I know how can I stop the loop until this “Next” button becomes disabled?
What condition shall i set?
Thank you for your advice in advance!
Hello there,
May I know how can I stop the loop until this “Next” button becomes disabled?
What condition shall i set?
Thank you for your advice in advance!
when u indicate the selector is there any difference element between the disable button and others?
Use get attribute activity for next button check aastate save its value in variable.
then use while loop
Inside the loop perform click activity and get attribute activity for next button check aastate save its value in same variable.
write condition as Variable = “enabled”
Hi @WS_Chai
=>You can use the while activity which useful for this.
Process →
=> Take an assign activity and create a boolean variable called BoolFlag. Initialize the Variable as True.
- Assign -> BoolFlag = True
=> After assign activity insert the while activity and write the condition like BoolFlag = True
=> Inside the While body place the Click activity and indicate the Next button. In the properties of this activity check the Continue on error option.
=> After that activity place the element exist activity and indicate the Next button and in output of Element exist activity pass the BoolFlag variable.
Check the below image for better understanding
It will executes the click activity until the Next button appears.
Hope it helps!!
Hi @mkankatala,
Thank you for the guidance. It works. : )
Happy Automation!! @WS_Chai
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.