Scrape Data to Radio Buttons

Hi,

I need to scape data on a website and the output should be options of Raddio Buttons.

I already scrape the data and getting the result as below:
image

I want the optiosn to be dislayed into the input dialog box as below(instead of “a,b,c”):
image

Can someone help me please?

Thanks!

Hi @Yudhisteer_Chintaram

Use Input Dialogue Activity, with multiple option property enabled

Br,
Goutham

How do I pass my output of Scrape data to the Input Dialog?
I don’t want to do it manually. I want it to scrape then insert it into the Input Dialog automatically.

I assume you are saving scraped data to a string variable and each line in the result is seperated by newline. If yes, you can use pass YourVariableName.Replace(vbNewLine,“;”) to the “Input options” in the input dialog activity.

1 Like

Hey @Surya_Narayana_Korivipadu,

It worked but the result include the column name of the Scraped Data as shown below:
image

Can we just have the numbers? That is, we do not show the option “TC Number”.

Thanks!

Then use YourVariableName.Replace(vbNewLine,“;”).Replace(“TC Number;”,“”)

1 Like

Thanks a lot man!

You’re welcome

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.