Hi, Please help me find solution, as " attach browser " is no longer available in the new version of uipath
Are you using Modern or Classic activities ?
Hi @Mystical_Devices ,
Try Enabling Show Classic Filter Option from the Activities Panel :
You Should be able to get the Attach Browser
Activity
Hi,
You can use the new Activity “Use Application/Browser” to do the same in the modern activities.
so basically, when i press a button on the exisitng url, it creates a new tab,
and then i want to do click activity on the new tab, but it automatically bounces back to the original tab,
how to fix this?
The " Attach Browser Activity " is the feature of the classic uipath
how can i implement this feature in new verison of uipath?
When you are modern type of activities you won’t be able to find attach browser
There are two options
If you want classic activities also along with modern one then in activity panel right click that filter button and enable show classic
And then search for attach browser activity
It will come
Or
If you want to know how to use in modern activities then use a Use application/ Browser activity and pass url you want in property panel
Inside that once after clicking or going to new tab use one more USE APPLICATION/ BROSWER activity and Just indicate that new tab as a element so it will be able to access the elements inside that mew tab
It’s more like attach browser only when you just indicate here screen as a element
Cheers @Mystical_Devices
@Palaniyappan
I have a few questions, Thank you in advance for your replies!
- how to maximize the browser inside classic “open browser”
You got an activity called MAXIMIZE window
Use Attach window activity and inside the container click on the"Indicate window on screen" and here select your IE/Chrome whole window, which has the output variable as windows type ,give some variable name (X) in the property section.
step2: inside the “do” container use the “Maximize activity” and pass the window variable(X) as the input.
Cheers @Mystical_Devices
Please explain me how can i achieve this?
In use application browser activity you can see indicate element option
Click that and select that new tab as a region of element
@Palaniyappan i am trying to do the following:
Task:
i want to perform activities on multiple tabs which are not there to begin with.
- i make a Browser/application activity, indicate URL, and on th webpage, i press a button on the webpage(using Click activity) which takes me to another tab, however using the modern "Browser/application " activity instead of the remaining activities being carried out on the new tab, the browser automatically takes me to the original tab, instead of the new tab, where activites have to be performed,
Please provide a solution: where i can carry my work onto the new tab created.
sorry if i have confused you- i hope you have understood my situation.
Here you can find this option
As said earlier keep first use application browser activity and just pass the url in property panel
Don’t indicate any screen as a element
And inside that use application browser activity use one more use application browser activity where click on the indicate button and select that new browser tab as a element
inside the 2nd Browser/application activity, when i press Indicate element on screen,
it only allows me to choose the entire browser, it does not allow me to select the tab! (just like a click activity allows u to select indivudal items on screen)
How to fix this>?
Add idx attribute into the selector if it’s not there. If you are working on first tab then idx attribute value will be 1 and for second tab it is 2 and so on. Based on this attribute value we can identify corresponding tab elements.
i tried to select the new tab, and use get attribute activity,
but i cant find any idx option,
where can i find it?
TEST_2.xaml (10.8 KB)
Hello this is what i am trying to do performing tasks on 2nd tab,
but i get error:
Application not supported by uiNode
Please help