Pass Dropdown as i/p Parameter

Hi Community,

I am creating a Login library in UiPath . I want to pass Browser Type ( Edge, Chrome) in dropdown as argument, Instead of Input Dialog . can anyone let me know how to do it?

Hi @ch460960

If you use the Open browser activity to can give the browser type to use.
Check the properties of open browser activity in that you have the Browser type option.
you can pass the Input dialog box variable in that option.
image

In this you can use the multiple choice option in the Input dialog to select the one option in multiple options. In that you can select in which browser you want to open.

Hope it helps!!

Hi @mkankatala , I’m using Modern controls

Hi @ch460960

You can get user input from orchestrator assets also by using get asset activity.

Okay @ch460960

Open the selectors in the properties of open browser\application activity after indicating the webpage.
Take the Input dialog box variable and pass the variable in the Selectors.
Like below

"<html app='"+Browser+".exe' title='ACME System 1 - Log In' />"

The browser is the variable that I store the data from the Input dialog box.

I have tried its working properly.

Hope it helps!!