Problem in scrapping individual product name and image

I got problem for scraping individual product name and image. and also site loading can't success in 2000ms for both Request interval and page load delay.

Url: https://www.henge07.com/products/lighting/

Sitemap:
{"_id":"henge_light","startUrl":["https://www.henge07.com/products/lighting/"],"selectors":[{"id":"products","parentSelectors":["_root"],"type":"SelectorLink","selector":".c01125 a","multiple":true,"delay":0},{"id":"element","parentSelectors":["_root"],"type":"SelectorElement","selector":"img.c01128","multiple":true,"delay":0},{"id":"name","parentSelectors":["products"],"type":"SelectorText","selector":".c01188 h1 div","multiple":false,"delay":0,"regex":""},{"id":"image","parentSelectors":["products"],"type":"SelectorImage","selector":"img.c01187","multiple":false,"delay":0},{"id":"descriptions","parentSelectors":["products"],"type":"SelectorText","selector":"div.c01190","multiple":false,"delay":0,"regex":""}]}

@Bikash Hello, that most likely happens due to the fact that the website regenerates the selector classes each new session.

Update the sitemap with the following example and launch with the 'Page load delay' set to at least 20'000-40'000(ms):

{"_id":"henge_light","startUrl":["https://www.henge07.com/products/lighting/"],"selectors":[{"delay":0,"id":"products","multiple":true,"parentSelectors":["_root"],"selector":"div.productItem__title a","type":"SelectorLink"},{"delay":0,"id":"name","multiple":false,"parentSelectors":["product-page"],"regex":"","selector":".borderedTitle__title h1 div:nth(0)","type":"SelectorText"},{"delay":0,"id":"image","multiple":false,"parentSelectors":["product-page"],"selector":".pageProduct > div img:nth(0)","type":"SelectorImage"},{"delay":0,"id":"descriptions","multiple":false,"parentSelectors":["product-page"],"regex":"","selector":"h2 + div p","type":"SelectorText"},{"delay":0,"id":"product-page","multiple":true,"parentSelectors":["products"],"selector":"body:has(.pageProduct)","type":"SelectorElement"}]}