Hi, there’s a webpage (which i need to scroll down) and find the specific string of text (as attached). How can i do that?
Hi @Joanna2
If there is a list of strings like the image that you shared.
=> Use the extract datatable activity to extract it as datatable.
=> After that use the for each row in datatable activity to iterate the extracted datatable.
=> Inside for each row in datatable activity place the If activity.
=> In that If activity give the condition that currentitem(“Column name”)=“DB_RPM_CASHI_MY_PORTFOLIO_DASHBOARD”
=> Store the row value in a String datatype variable
=> Inside If use click activity, select the proper attribute and pass the variable to the proper attribute to the strict selectors.
Then it will click on that specific text in the webpage.
We are using the dynamic selectors here.
Hope it helps!!
Use “Find element” activity to find a string of text in webpage
or
Element Exists Activity: The “Element Exists” activity can be used to check whether a specific text or element exists on a web page. It returns a boolean value indicating if the element is present or not.
Hi,
You can use send hot key with ctrl+F and Enter to find text
Regards,
Hi @Joanna2
Try simulate click option in “Click” activity, it will work on background.
Hi @Joanna2
Just simply your life and use the mouse scroll activity, select the element and that’s it
Regards!
Hi @Joanna2
Use the use browser/ application activity and then within that use browser/application activity use the mouse scroll activity and indicate the element so that the web page moves to that specific element and then use the click activity and indicate the element you wanted to indicate.
Hope it helps!!
Is the text you want to find is in a specific element? Like I see it looks like a name of some song or voice.
If that is the case then you can first indicate a similar element and then use a variable in plce of innertext and pass the value you want to find to the innertext…and use this selector is hover activity …which will scroll and hover to the required element…if you want to check if it is present or not then you can use a check app state as well before that…now once element is found …and hover runs ,you can proceed with remaining activity that you want to perform
Cheers
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.