Scraping Zillow - Having trouble scrapping from links

Hey all,
I'm learning Web Scraper for the first time. On the Zillow saved homes page I'm trying to: (1) paginate different page numbers --> (2) on each page clicking several links on the page (for each home) -> (3) in each home link, text selecting a bunch of different lines, such as price, beds, baths.

I'm having a problem where when I scrape, I can see the program running through each page succuesfully, but none of the values from my text selectors are scraped. I think maybe I'm setting up the links wrong somehow?

For reference my selector graph is: Root --> click pagination --> link selector --> a bunch of text selectors.

Relevant pagination video I used below. I used the third method for pagination (element click) from the pagination youtube video.

Url: https://www.youtube.com/watch?v=x8bZmUrJBl0

Please see some images of my setup below.

Selector%20Graph

Haven't done Zillow in a while. This should work for Saved Homes with pagination:

{"_id":"forum-zillow-saved-homes-sept","startUrl":["https://www.zillow.com/myzillow/favorites"],"selectors":[{"id":"Results wrapper","type":"SelectorElement","parentSelectors":["_root","Paginator"],"selector":"div[class^='FavoritesList__ListCardsWrapper']","multiple":false,"delay":0},{"id":"Click on properties","type":"SelectorLink","parentSelectors":["Results wrapper"],"selector":"div[class*='PropertyListCard'] div.list-card-info a.list-card-link","multiple":true,"delay":0},{"id":"Address","type":"SelectorText","parentSelectors":["Click on properties"],"selector":"h1.ds-address-container","multiple":false,"regex":"","delay":0},{"id":"Price","type":"SelectorText","parentSelectors":["Click on properties"],"selector":".ds-chip span.ds-value","multiple":false,"regex":"","delay":0},{"id":"Living area","type":"SelectorText","parentSelectors":["Click on properties"],"selector":"h3[class*='bath-living-area-container']","multiple":false,"regex":"","delay":0},{"id":"Zestimate","type":"SelectorText","parentSelectors":["Click on properties"],"selector":"p span:contains('Zestimate')","multiple":false,"regex":"","delay":0},{"id":"Zestimate2","type":"SelectorText","parentSelectors":["Click on properties"],"selector":"div[display='flex']:contains('Zestimate') div > p[class^='Text']","multiple":false,"regex":"","delay":0},{"id":"HOA","type":"SelectorText","parentSelectors":["Click on properties"],"selector":"ul.ds-home-fact-list > li:contains('HOA') span[class*='home-fact-value']","multiple":false,"regex":"","delay":0},{"id":"Foreclosure","type":"SelectorText","parentSelectors":["Click on properties"],"selector":"p span[class*='tooltip-launch_keyword']:contains('oreclos')","multiple":false,"regex":"","delay":0},{"id":"Paginator","type":"SelectorElementClick","parentSelectors":["_root"],"selector":"div[class^='FavoritesList__PageContainer']","multiple":false,"delay":"4000","clickElementSelector":"li > button[title='Next page']","clickType":"clickOnce","discardInitialElements":"discard-when-click-element-exists","clickElementUniquenessType":"uniqueHTML"},{"id":"Locality","type":"SelectorHTML","parentSelectors":["Click on properties"],"selector":"div.ds-data-col","multiple":false,"regex":"(?<=Locality":")[^"]+?(?=")","delay":0},{"id":"Time on Zillow","type":"SelectorText","parentSelectors":["Click on properties"],"selector":"div.ds-overview div:contains('Time on Zillow') ~ div[class^='Text']","multiple":false,"regex":"","delay":0}]}

Hey! Visit zillow customer service page to solve all issues with agency.