Element Scroll Down: Unable to capture data

Describe the problem:
Tried to set element scroll down and click the desired element. But when execute program, it never capture any data.

Url: Find companies and jobs in Malaysia - Hiredly

Sitemap:
{"_id":"hiredly","startUrl":["https://my.hiredly.com/companies"],"selectors":[{"id":"name","parentSelectors":["_root"],"type":"SelectorPopupLink","selector":"h2","multiple":true,"delay":0},{"id":"name1","parentSelectors":["name"],"type":"SelectorText","selector":"h1","multiple":false,"delay":0,"regex":""},{"id":"industry","parentSelectors":["name"],"type":"SelectorText","selector":"h6.eAmkJR","multiple":false,"delay":0,"regex":""},{"id":"jobcount","parentSelectors":["name"],"type":"SelectorText","selector":"h6.dDfhOd","multiple":false,"delay":0,"regex":""},{"id":"job","parentSelectors":["name"],"type":"SelectorPopupLink","selector":"div.styles__CardContentStyled-sc-1t93cfy-15","multiple":true,"delay":0},{"id":"job nature","parentSelectors":["job"],"type":"SelectorText","selector":"div.styles__IconTextContainer-sc-fr2p12-27:nth-of-type(2) p","multiple":false,"delay":0,"regex":""},{"id":"salary","parentSelectors":["job"],"type":"SelectorText","selector":"div.styles__IconTextContainer-sc-fr2p12-27:nth-of-type(3) p","multiple":false,"delay":0,"regex":""},{"id":"fullpart","parentSelectors":["job"],"type":"SelectorText","selector":"div.styles__IconTextContainer-sc-fr2p12-27:nth-of-type(1) p","multiple":false,"delay":0,"regex":""}]}

@wajun08 Hi.

It does not look like your sitemap contains such an element, however, the main issue most likely arises due to how you have defined the 'name' & 'job' selectors.

Try to update your sitemap with the following example:

{"_id":"hiredly","startUrl":["https://my.hiredly.com/companies"],"selectors":[{"delay":0,"id":"name","multiple":true,"parentSelectors":["_root"],"selector":"div[class*=\"styles__CompanyListWrapper\"] div[theme=\"[object Object]\"]:has(a[theme=\"[object Object]\"]) a","type":"SelectorLink"},{"delay":0,"id":"name1","multiple":false,"parentSelectors":["name"],"regex":"","selector":"h1","type":"SelectorText"},{"delay":0,"id":"industry","multiple":false,"parentSelectors":["name"],"regex":"","selector":"h1 + div:has(svg[title=\"Industry\"]) div:has(svg[title=\"Industry\"])","type":"SelectorText"},{"delay":0,"id":"jobcount","multiple":false,"parentSelectors":["name"],"regex":"","selector":"h6:contains(\"Jobs\")","type":"SelectorText"},{"delay":0,"id":"job","multiple":true,"parentSelectors":["name"],"selector":"div[class*=\"styles__CardContainer\"] a[class*=\"styles__MaterialUiLinkStyled\"]","type":"SelectorLink"},{"delay":0,"id":"job nature","multiple":false,"parentSelectors":["job"],"regex":"","selector":"div.styles__IconTextContainer-sc-fr2p12-27:nth-of-type(2) p","type":"SelectorText"},{"delay":0,"id":"salary","multiple":false,"parentSelectors":["job"],"regex":"","selector":"div.styles__IconTextContainer-sc-fr2p12-27:nth-of-type(3) p","type":"SelectorText"},{"delay":0,"id":"fullpart","multiple":false,"parentSelectors":["job"],"regex":"","selector":"div.styles__IconTextContainer-sc-fr2p12-27:nth-of-type(1) p","type":"SelectorText"}]}