Missing values for some rows, not all

Describe the problem: I am trying to scrape all the data from www.shopistores.com/shopify/cosmetics, see sitemap. When I download the CSV, I have all data for some rows but some data is missing even though I see the raw data from the site.
What am I doing wrong?

Url: http://www.shopistores.com/shopify/cosmetics

Sitemap:
{"_id":"shopifycosmetics","startUrl":["https://www.shopistores.com/shopify/cosmetics/1"],"selectors":[{"id":"page","type":"SelectorLink","parentSelectors":["_root","page"],"selector":"div:nth-of-type(3) li:nth-of-type(n+2) a","multiple":true,"delay":0},{"id":"linkaddress","type":"SelectorLink","parentSelectors":["_root","page"],"selector":"[data-title='Store Address'] a","multiple":true,"delay":0},{"id":"title","type":"SelectorText","parentSelectors":["_root","page"],"selector":"td[data-title='Title']","multiple":true,"regex":"","delay":0},{"id":"alexa","type":"SelectorText","parentSelectors":["_root","page"],"selector":"td.numeric","multiple":true,"regex":"","delay":0},{"id":"country","type":"SelectorText","parentSelectors":["_root","page"],"selector":"td[data-title='Country']","multiple":true,"regex":"","delay":0}]}

Almost there, you only need to group your data scraper within row wrappers (containers). Also, the shopistore site URLs do change consistently with each new page, so you can use the Specify multiple URLs with ranges method. No need to create your own paginator.

In the example below, I tested with a different URL, page range [1-5] and Page load delay: 4500. Modify as needed.

{"_id":"forum-shopify-test","startUrl":["https://www.shopistores.com/shopify-jewelry-stores/[1-5]"],"selectors":[{"id":"linkaddress","type":"SelectorLink","parentSelectors":["Row wrappers"],"selector":"[data-title='Store Address'] a","multiple":false,"delay":0},{"id":"title","type":"SelectorText","parentSelectors":["Row wrappers"],"selector":"td[data-title='Title']","multiple":false,"regex":"","delay":0},{"id":"alexa","type":"SelectorText","parentSelectors":["Row wrappers"],"selector":"td.numeric","multiple":false,"regex":"","delay":0},{"id":"country","type":"SelectorText","parentSelectors":["Row wrappers"],"selector":"td[data-title='Country']","multiple":false,"regex":"","delay":0},{"id":"Row wrappers","type":"SelectorElement","parentSelectors":["_root"],"selector":"table > tbody > tr","multiple":true,"delay":0}]}

Awesome, that worked, thanks a lot!!