Data Scraping not working - Dispatching only last page of website and not dispatching the first two pages

Well,

  1. Go through these links and get back if you have more queries :slight_smile:
    Stabilizing Selectors - #4 by ClaytonM
    Selectors gets failed - #5 by aditya.prakash
    How can I stabilize a download from internet explorer¿?
    How can Fix this dynamic selector? - #2 by ecarles
    Stabilizing is basically inspecting the page source (F12) on the website or using UiExplorer and then selecting something that is common yet unique throughout the extraction of the pattern values.

  2. Basically while indicating elements in data scraping when the wizard encounters a -‘table’ then it will prompt and ask the developer whether s/he wants to extract the whole table. I guess this isn’t the case in your scenario,

  3. Basically when you finish extracting the co-related data from the wizard it will ask wheter the data spans multiple pages - so you indicate the ‘next’ button/element/arrow or any UiElement that navigates the whole pagination. SO instead of indicating that - Extract that current apge and check whether the ‘next page’ element exists and click on it in a while loop having the condition that the ‘element exists = true’

By the way there are plenty of examples regarding all the points, so I basically provided the ideas. If you still need help after this get back :slight_smile:

Regards