How to click to view the details of searching text?

Hi,
I need solution for the day.
Need to find specific search text click to view the details from the list of content dynamically? Thanks.

I followed the below steps:

  1. Keyboard shortcuts - ctrl + f
  2. Type into - type text(dynamic) into the search area to find the specific text.
  3. Click activity with dynamic name aaname=‘getName’.

@Gowthaman_Gajakutti ,

Step1: Take the Text that has to be clicked from the excel or Input dialog
Step2: Use anchor base activity
step3: Left side insert FIND ELEMENT activity (Modify the selectors and assign the text in the selectors of it)
Right side insert a click activity

Hope it helps you

Hi,
First thanks for your response.
This is not excel. It is the list page from an extension. Can you give me flow for this to understand better?

I Have practiced a workflow with type into activities
Below is the file
Assignment 4- Anchor Base.zip (46.7 KB)

Can you send your website link or some dummy website such that i can explain it to you better

This will not work for this scenario.

@Gowthaman_Gajakutti

make the selector Dynamic by placing the variable in the click activity,it will works

cheers

@Gowthaman_Gajakutti

you dont need to fo ctrl+f first of all…if you need to fidn the text from the table …then you can have the selector like this

<webctrl tag='TABLE' />
<webctrl tag='TD' tablecol='1' aaname='{{Variable}}' />

This is example selector

This should search the aaname present in variable in the first column of the table and click if used in click activity

if needed to click on check box then use

<webctrl tag='TABLE' />
<webctrl tag='TD' tablecol='1' aaname='{{Variable}}' />
<nav-up='1'>
<webctrl tag='BUTTON' />

again this is a sample…check the tags properly

cheers