Scrapping shows "null" data

Describe the problem.

Url: https://www.superama.com.mx/catalogo/d-farmacia/f-medicamentos/l-analgesicosm

Sitemap:
{"_id":"superama_main","startUrl":"https://www.superama.com.mx/catalogo/d-farmacia/f-medicamentos/l-analgesicosm","selectors":[{"id":"todo","type":"SelectorElement","selector":"li.item","parentSelectors":["_root"],"multiple":true,"delay":""},{"id":"name","type":"SelectorText","selector":"a.nombreProductoDisplay","parentSelectors":["todo"],"multiple":true,"regex":"","delay":""},{"id":"more","type":"SelectorElementClick","selector":"div.btnSuperama-More button.btnSuperama","parentSelectors":["_root"],"multiple":true,"delay":"","clickElementSelector":"div.btnSuperama-More button.btnSuperama","clickType":"clickMore","discardInitialElements":true,"clickElementUniquenessType":"uniqueCSSSelector"},{"id":"promo","type":"SelectorText","selector":"div.portfolio-promotional span","parentSelectors":["_root"],"multiple":true,"regex":"","delay":0},{"id":"Price","type":"SelectorText","selector":"div.portfolio-price:nth-of-type(5) div.portfolio-price","parentSelectors":["todo"],"multiple":true,"regex":"","delay":0}]}

Hi!

You don't need to create multiple Element selectors. In your case, one is just fine — it presses the pagination button, while having elements wrapped into selector, and then scrapes it.

Also, if you want to scrape grouped multiple results, you have to select Multiple only into parent selector (in this case, its Element click), as it will pick all results with Multiple option. Having Multiple option selected within selectors that are childs of Element Click will cause results to ungroup and go one after another.

Fixed sitemap:

{"_id":"superama_main2","startUrl":["https://www.superama.com.mx/catalogo/d-farmacia/f-medicamentos/l-analgesicosm"],"selectors":[{"id":"name","type":"SelectorText","selector":"a.nombreProductoDisplay","parentSelectors":["click_more_and_pick_stuff"],"multiple":false,"regex":"","delay":0},{"id":"price","type":"SelectorText","selector":"div.h3","parentSelectors":["click_more_and_pick_stuff"],"multiple":false,"regex":"","delay":0},{"id":"promo","type":"SelectorText","selector":"span.buscar-product__superahorro","parentSelectors":["click_more_and_pick_stuff"],"multiple":false,"regex":"","delay":0},{"id":"click_more_and_pick_stuff","type":"SelectorElementClick","selector":"li.item","parentSelectors":["_root"],"multiple":true,"delay":0,"clickElementSelector":"div.btnSuperama-More button.btnSuperama","clickType":"clickMore","discardInitialElements":false,"clickElementUniquenessType":"uniqueText"}]}

Thank you! I had no idea what I was doing wrong