Help needed in Custom Activity

Hi,
I need to create a custom activity in which a user should be able to select the browser type i.e(IE,Chrome,edge)
Kindly help!!

Hi @Blesslin
you can do one thing create an excel and in there is column name as “IE”

use for each row and use if condition as row(“Browser Type”).ToString.contains(“IE”)

use start process and launch ie like wise do it for other browser

Thanks
Ashwin S

No, I wanted the input from the user …so I cannot feed it in excel

Take Input and pass the option as parameter in bellow code

For Explore:
Process.Start(“IExplore.exe”);
For Chrome:
Process.Start(“chrome.exe”, “–incognito”);

Thanks