I am using RE and have 600 Employee name’s in Queue. I want to Click on Each name.
I am getting the Employee name and selector is working fine but the issue is, ‘Emp256’(name of employee) coming 1st from Queue and on the Web Page the Single Page has first 20 records and rest are on ‘Next Page’.
How can I navigate through each page to search for that ‘Emp256’ and select that.
What happens when you click the name? Does it take you to another web page? If so, what is the URL? There might be a way to generate the URL dynamically and instead of actually clicking on the name, just browse to the dynamically generated URL for each queue item.
As another possible option, does the web page have search functionality? If so, you could perform a search for the employee name so it is the only one shown on the page, then click it.
If search is not there then what you can do is, Extract the Tables from the Webpage and write it to an excel. Instead of indicating the Next button in the TableExtraction, you can do the TableExtraction using a While Loop , with condition i<pagenumber and increment i. Append the Page Number Also while Extracting the Data and write to excel.
The get the values from Queue and filter in the Excel which you created. From there you will get the page number. Use click activity to click on that page number. Then use the values from queue to click on the Element which you want(use dynamci selector)
@Gagan_Chaudhari Then this might make your process easier. Just get the data from the queue Emp256 and search for that employee in the search field. Now the resulted data appears in the first row (I guess) then select it