It was working well with propstream but now can't scrape the details anymore

{"_id":"all","startUrl":["https://app.propstream.com/search"],"selectors":[{"id":"property link","type":"SelectorLink","parentSelectors":["_root","pagination"],"selector":"a._3gdAr__name","multiple":true,"delay":0},{"id":"pagination","type":"SelectorElementClick","parentSelectors":["_root","pagination"],"selector":"div.BZTum__info","multiple":true,"delay":0,"clickElementSelector":"button:nth-of-type(3) span","clickType":"clickMore","discardInitialElements":"do-not-discard","clickElementUniquenessType":"uniqueText"},{"id":"OWNER 1 FULL NAME","type":"SelectorText","parentSelectors":["property link"],"selector":".react-tabs__tab-panel > div:nth-of-type(1) div._2IP_N__cell:nth-of-type(1) ._1NSwY__value div","multiple":false,"regex":"","delay":0},{"id":"OWNER 2 FULL NAME","type":"SelectorText","parentSelectors":["property link"],"selector":"div._2zuUA__page:nth-of-type(1) div:nth-of-type(5) ._1NSwY__value div","multiple":false,"regex":"","delay":0},{"id":"MAILING ADDRESS","type":"SelectorText","parentSelectors":["property link"],"selector":".react-tabs__tab-panel > div:nth-of-type(1) div._2IP_N__cell:nth-of-type(2) ._1NSwY__value div","multiple":false,"regex":"","delay":0},{"id":"MAILING CARE OF NAME","type":"SelectorText","parentSelectors":["property link"],"selector":"div._2zuUA__page:nth-of-type(1) div:nth-of-type(3) ._1NSwY__value div","multiple":false,"regex":"","delay":0},{"id":"PROPERTY ADDRESS","type":"SelectorText","parentSelectors":["property link"],"selector":"div._34QKo__headerTitle","multiple":false,"regex":"","delay":0},{"id":"COUNTY","type":"SelectorText","parentSelectors":["property link"],"selector":"div:nth-of-type(11) div._2srjA__value","multiple":false,"regex":"","delay":0},{"id":"BEDS","type":"SelectorText","parentSelectors":["property link"],"selector":"div.R-NbA__label:nth-of-type(1) span","multiple":false,"regex":"","delay":0},{"id":"BATHS","type":"SelectorText","parentSelectors":["property link"],"selector":"div.R-NbA__label:nth-of-type(2) span","multiple":false,"regex":"","delay":0},{"id":"SqFt","type":"SelectorText","parentSelectors":["property link"],"selector":"._14V1h__left div.twfRj__item:nth-of-type(2) div._2srjA__value","multiple":false,"regex":"","delay":0},{"id":"LOT SIZE","type":"SelectorText","parentSelectors":["property link"],"selector":"._14V1h__left div:nth-of-type(3) div._2srjA__value","multiple":false,"regex":"","delay":0},{"id":"YEAR BUILT","type":"SelectorText","parentSelectors":["property link"],"selector":"._14V1h__left div:nth-of-type(4) div._2srjA__value","multiple":false,"regex":"","delay":0},{"id":"ESTIMATED VALUE","type":"SelectorText","parentSelectors":["property link"],"selector":"._3mb-E__valueSection > div:nth-of-type(2) div:nth-of-type(1) div.R-NbA__label","multiple":false,"regex":"","delay":0},{"id":"LAST YEAR","type":"SelectorText","parentSelectors":["property link"],"selector":"._3mb-E__valueSection > div:nth-of-type(2) div:nth-of-type(2) div.R-NbA__label","multiple":false,"regex":"","delay":0},{"id":"ESTIMATED EQUITY","type":"SelectorText","parentSelectors":["property link"],"selector":"div:nth-of-type(3) div:nth-of-type(2) ._3k-we__values div:nth-of-type(1) div.R-NbA__label","multiple":false,"regex":"","delay":0},{"id":"OCCUPANCY","type":"SelectorText","parentSelectors":["property link"],"selector":"div:nth-of-type(8) div._2srjA__value","multiple":false,"regex":"","delay":0},{"id":"LENGTH OF OWNERSHIP","type":"SelectorText","parentSelectors":["property link"],"selector":"div:nth-of-type(9) div._2srjA__value","multiple":false,"regex":"","delay":0},{"id":"PURCHASE METHOD","type":"SelectorText","parentSelectors":["property link"],"selector":"div:nth-of-type(10) div._2srjA__value","multiple":false,"regex":"","delay":0}]}

The site uses random characters in its elements, e.g. div._34QKo__headerTitle so those have probably changed since the last time. You would need better selectors to deal with the random characters. For the example above, something like div[class$='headerTitle'] might work.

Ref: https://www.w3schools.com/cssref/css_selectors.asp