Hello community,
i have a big doubt, i will try to insert data inside a multiple page on a website, the trouble is, i’ll do the same with two different credential, so i’d like to write inside all page and when i have no more data (Transaction item < arr.Count) BOT should log out and change credential, and then doing the same operation. How can i do that? I have credential stored in orchestrator.
Make sure you have both credential names in de config file.
When you do the second run after you have logged out invoke the GetAppCredentials again but this time with the second credential name in the InArgument.
A change you could make in the workflow is to set a Boolean to True/False after the first run with two GetAppCredentials in an ‘If block’. When True run the first with the first credentials, when false run with the second.
Yes i think for what you want it to do you have to get transaction data every run.
The expression in the switch can be a variable as int32 or a String to make it easy. Then use an assign to set the variable to the value of the case after each run.
Thanks but i don’t know how can i use it.
My idea is: put the switch before the run and inside every case, example case1 getappcredential and log in, case2 get app credential, log out and log in, case3 ecc. it’s something like that?