Cv Extract table to indicate on next button

Hello community!

Iam extracting a table from a remote site computer and there are multiple pages i want to extract but cv screen table extract data dont have option to indicate next button to scrape more data
what is other approach i can use to scrape?

Please use the table extraction menu from the studio menu and it will allow you to move to the nextnext page for extraction.

@sangeethaneelavannan1 but in this scenerio iam extracting the table data from remote computer so there is no option available in cv screen table extract data

Hi @Priyesh_Shetty1

There is no option to indicate on next button by CV Extract Table activity. Make a loop by using while. Inside while insert CV Extract Table activity and after that use cv click activity to indicate on next button.

Hope it helps!!

@mkankatala How can i do this?

@mkankatala Some time the pages will be not fixed

Follow the below process for better understanding,
→ Take CV Screen scope activity and indicate the browser.
→ Inside CV Screen scope insert the assign activity and create a boolean datatype variable called bool_flag and assign value as True.

- Assign -> bool_flag = True

→ Take while activity to loop, write condition in while activity as below,

- while condition -> bool_flag = True

→ Inside while loop insert the CV Extract Table activity to extract the table and store in a datatable called dt.
→ Insert Append Range workbook activity to write the dt to the excel.
→ After Append Range workbook activity insert CV Element exist activity and indicate on Next button and pass the output variable bool_flag.
→ Take a If condition to check the condition,

- If condition -> bool_flag = True

→ In then block insert CV Click activity and indicate on Next button

The above process, while loop work until the next button disappears.

Hope you understand!!

Check the below workflow for better understanding, but I have done this by using Modern UI activities change the activities according to CV… @Priyesh_Shetty1

Hope you understand!!

@mkankatala next button doest not dissappear in this scenerio

With out next button indication and anything how will be the page change… @Priyesh_Shetty1

@mkankatala BOT is clicking on next button on the last page also. It is not exiting the loop.