Only the first element on a page is read

I created a sitemap for a website very similar to http://webscraper.io/test-sites/e-commerce/allinone. My approach works on the test site but not on the bethesda site. It seems that my sitemap sees all the elements on a page but only reads the data from the first element. Can someone provide some guidance?

Url: http://www.bethesda.co.za/Search.aspx?searchKeyword=&Page=0

Sitemap:
{"_id":"bethesda","startUrl":["http://www.bethesda.co.za/Search.aspx?searchKeyword=&Page=[0-100]"],"selectors":[{"id":"product","type":"SelectorElement","selector":"div.w-box.product","parentSelectors":["_root"],"multiple":true,"delay":0},{"id":"code","type":"SelectorText","selector":"span#ctl00_ctl00_ContentPlaceHolder1_ShopContent_rptrSearchResults_ctl00_lblSearchResultsCode","parentSelectors":["product"],"multiple":false,"regex":"","delay":0},{"id":"desc","type":"SelectorText","selector":"a#ctl00_ctl00_ContentPlaceHolder1_ShopContent_rptrSearchResults_ctl00_lnkSearchResultsName","parentSelectors":["product"],"multiple":false,"regex":"","delay":0},{"id":"price","type":"SelectorText","selector":"span#ctl00_ctl00_ContentPlaceHolder1_ShopContent_rptrSearchResults_ctl00_lblSearchResultsPrice.price","parentSelectors":["product"],"multiple":false,"regex":"","delay":0}]}

Hi,
there seems to be a problem with the selector "element" (a bug de Web scaper ?) but you can achieve to get your extraction with another sitemaps like this one :

{"_id":"test","startUrl":["http://www.bethesda.co.za/Search.aspx?searchKeyword=&Page=0"],"selectors":[{"id":"link","type":"SelectorLink","selector":"h2 a","parentSelectors":["_root","pagination"],"multiple":true,"delay":0},{"id":"title","type":"SelectorText","selector":"h3 span","parentSelectors":["link"],"multiple":false,"regex":"","delay":0},{"id":"manufacturer","type":"SelectorText","selector":"span#ctl00_ctl00_ContentPlaceHolder1_ShopContent_lblProductDetailManufacturer","parentSelectors":["link"],"multiple":false,"regex":"","delay":0},{"id":"code","type":"SelectorText","selector":"span#ctl00_ctl00_ContentPlaceHolder1_ShopContent_lblProductDetailCode","parentSelectors":["link"],"multiple":false,"regex":"","delay":0},{"id":"pagination","type":"SelectorLink","selector":"ul.pagination li:nth-of-type(n+2) a","parentSelectors":["_root","pagination"],"multiple":true,"delay":0},{"id":"price","type":"SelectorText","selector":"span#lblProductDetailPrice","parentSelectors":["link"],"multiple":false,"regex":"","delay":0}]}