Hello experts,
I have a dataTable with 3 row that has Name, Password, id.
I have a scenario where i have to open 3 different chrome and open same url and fill up form with different account.
How can i do this? Can anyone help me out ?
Hello experts,
I have a dataTable with 3 row that has Name, Password, id.
I have a scenario where i have to open 3 different chrome and open same url and fill up form with different account.
How can i do this? Can anyone help me out ?
This process will fill form one by one, i wanna do this at a same time. Like 3 row data should be fill in 3 different chrome at same time.
Instead of using three separate browsers, switch to a single browser with three URL panels one by one.
use of go to url activity
Hi @RobotUi
Try to use parallel activity. I think this will work.
then how to tell bot to insert 2nd row data in 2nd browser , 3rd row data in 3rd browser ?
I think parallel activity will work with hardcoded values, not sure with dynamic data.
You can keep all the 3 open …but you cannot do it parallely…
Think of it like rhis…as these are ui tasks…it cannot work in parallel…but what you can do is use open browser in loop and fill details…if you want to leave open donot close…also you can select incognito mode to work with them if 3 logins does not support
Cheers
It means i cannot do “type into” in 3 fields in different browser in parallel activities ?
You can try using chromium api…but wven then I doubt you can…
Use parallel for each activity and try to set the input method to chromium api and check if that works
Cheers
Will it be possible if i run 1 unattended and 1 attended bot at same time and run same process that does not have parallel activity used. ?
You cannot run teo foreground processes at the same time…they would not start only…paralle for each only might help with chromium api…if that does not work…then you cannot
Also…if machine is open there is no unattended then
Cheers
Lets say i have three columns and 4 rows .
Name,Password,Captcha
Ram,ram@123,889
Shaym,sh@99,000
krishna,ks@99.110
Then how can i put logic so that browser should be open to DT.rows.count
and row 1,2,3 data should be filled in 3 different browser at same time (parallel acitivity)
Just do your automation in parallel for each activity…instead of for each activity…it would take care of the rest
Cheers
Just use three separate Use Application/Browser activities in a row to open the three windows. In each of them, set a different variable for the “Output element” property. Then later in your process when you want to enter data into one of them use another Use Application/Browser with that window’s variable as the “Input element.”
Can you please show me example ? you can share me picture or .xml file

Properties:
Then later you can use the Output element variable in other Use Application/Browser windows:

Why are you trying to do this? It’s not how automations are usually built. It sounds like you need to have a dispatcher automation that reads the data and creates queue items, then a performer automation that processes the queue items one by one.
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.