Hi all,
I’m new to Web Scraper and I'm currently trying to scrape version history information from the Apple app store (https://apps.apple.com/us/genre/ios-books/id6018). More specifically, I’m trying to scrape the release date of the last version of each app. I have already managed to build a working sitemap to scrape the ‘basic’ information (name, genre, size) from the different apps throughout the existing categories. These elements appeared as text on the page of the app (e.g. https://apps.apple.com/us/app/apple-books/id364709193). The version history, however, appears as a list inside an overlay pop-up container. I think I need to use an ElementClick selector for this, but am still quite lost as to what element to use for “Selector”.
I’m currently using this ElementClick selector: “Id:” “History”, “Type:” “Element click”, “Selector:” “li.version-history__item”, “Click selector:” “button#modal-trigger-ember212”, “Click type:” “Click once”, “Click element uniqueness:” “Unique text”, “Discard initial elements:” “Never discard”, “Delay (ms):” “0”, “Parent Selectors:” “App”.
The Parent Selector, “App”, is a Link Selector referring to the information page of the app (e.g. https://apps.apple.com/us/app/apple-books/id364709193)
As children to the “History” ElementClick selector, I have created two text selectors: “Id:” “Version”, “Type:” “Text”, “Selector:” “h4”, “Parent Selector:” “History” and “Id:” “Date”, “Type:” “Text”, “Selector:” “time”, “Parent Selector:” “History”.
The “Data Preview” button correctly returns this information and the “Element Preview” button works nicely as well. However, when scraping, the “Version” and “Date” columns are returned empty (“”).
Hence my question: what is wrong with the current ElementClick selector, and how can I get it to work?
Any help on this case is greatly appreciated!
