I have a membership to a website that provides an index of open source tools. I want to scrape the index and then download each file individually to keep a copy locally. However, the download button is a submit button on a form which submits and causes the browser to initiate the file download. Can Web Scraper actually handle the download?
In my sitemap below, the Download button will only be visible if you are logged in to the website.
Url: https://www.nobuna.com/product-category/plugins/
Sitemap:
{"_id":"plugins","startUrl":["https://www.nobuna.com/product-category/plugins/"],"selectors":[{"id":"pagination","type":"SelectorLink","parentSelectors":["_root","pagination"],"selector":"a.page-numbers","multiple":false,"delay":0},{"id":"pluginlink","type":"SelectorLink","parentSelectors":["_root","pagination"],"selector":".product-title a","multiple":true,"delay":0},{"id":"download","type":"SelectorElementClick","parentSelectors":["pluginlink"],"selector":"form#somdn-download-single-form","multiple":false,"delay":0,"clickElementSelector":"button.somdn-download-button","clickType":"clickOnce","discardInitialElements":"do-not-discard","clickElementUniquenessType":"uniqueText"},{"id":"name","type":"SelectorText","parentSelectors":["pluginlink"],"selector":"h2[itemprop='name']","multiple":false,"regex":"","delay":0}]}