Is there a way to run or loop a video 100 times using UIPath?
Carolyn
Is there a way to run or loop a video 100 times using UIPath?
Carolyn
Yes, Use a while loop with condition
int count =0
while(count<=100)
{
PlayVideo();
count=count+1;
}
This is awesome
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.