I have created set of processes in UiPath studioX - Activities. These set of process includes login with a user. I need to login with some more 5 users and to do the same set of process which I had it for the above mentioned single user. Is it possible? please help!
Hii @neethu.v
Define variables to store user-specific information, such as usernames, passwords, and any other relevant data. You can create variables for each user or use data tables to store this information.
Use a For Each activity, to iterate through the list of users or rows in your data table.
Within the loop, use activities to perform the login process and execute the set of processes. You can use variables to provide user-specific information, such as the username and password.
If your process involves logging out at the end, make sure to include a logout step within the loop as well.
Cheers…!