How to click on each name of web page

Hi @siteltower ,

Check the post below on How to use the variables inside the Selector :

We would need to create a String variable and then use that String variable inside the Selector.

In your case, you would need to have a String variable, say str_name.

Using an Assign Activity before the Click we assign the value to this variable :

str_name = int_nameCounter.ToString

Then in the Selector, we can use the variable as below :

innertext = {{str_name}}
1 Like