How to use variables in data Scraping

I want to scrape data from google according to the search the user makes, that is the scraping topic will vary. how to edit the selector? how can i do this type of scraping?

for example,
i have automated the data scraping by searching a manufacturer name (for example ABB) but i want to make the automation as such that the program will extract data even if i change the name (for example anything other than ABB).

You can wildcard the selector using *.

E.g. Selector =
change to:

Hi

Please see the solution in the below thread:

check here for dynamic selectors:

can you elaborate the use of wildcard editing in selector for data scraping

Do you have an example of the selector you are using to scrape data for ABB?

trialextract with any input.xaml (11.6 KB)
this is the program
i want to use wild card so that it scrapes whatever data that is searched by the user

trialextract with any input.xaml (11.6 KB)
this is the program
i want to use wild card so that it scrapes whatever data that is searched by the user

The workflow seems to work for me - it extracts the name and URL for a variety of searches.

The wildcard (**) replaces what is replaces part of the selector to make it dynamic- i.e. title=‘ABB’ - title=‘*’ as you have done.

Wildcard explanation