Currently I am doing a automation in a confidential page and I am trying to extract a table using Table Extraction, which is will be appear always in single page. Can anyone give me a alternative method to achieve that?
You can Use Modern Screen Scraping with the Extract Table Data activity set to OCR engine instead of native selectors. Configure the OCR settings like Microsoft OCR or Tesseract OCR to read the table region. Parse the extracted text into a DataTable using Generate Data Table activity.
Hello @ganeshdo1
these are the method which u can use in scenario
Data Scraping : use Structured Data scraping wizard.
Find Children: get all rows/cells via selector iteration.
Screen Scraping (Full Text / Native): extract text & split using regex.
API / Backend calls: if app provides data service.
Ui Automation: loop through rows with Find Element + Get Text.
as i recommend Best option is = Data Scraping if table is structured.