HELP! table scrape

I need help getting table data "pricehistory" tab from property for an important project. When you click PriceHistory tab, theres a list of history. I've tried selecting selectors of DIV , SECTION, TR TD but unable to extract data.

If someone can help id appreciate it very much! Thanks in advance!

@iconoclast can you help with this. ive tried for past several hours and couldn't get it

you can grab it as a table

{"_id":"site-zillo","startUrl":["https://www.zillow.com/homes/for_sale/26842569_zpid/32.855869,-96.570425,32.800623,-96.754961_rect/12_zm/1_fr/"],"selectors":[{"id":"Element Click","type":"SelectorElementClick","parentSelectors":["_root"],"selector":"div.zsg-tabview","multiple":false,"delay":0,"clickElementSelector":"div#yui_3_18_1_1_1538906854720_16924.hdp-collapse h2.zsg-h2","clickType":"clickOnce","discardInitialElements":false,"clickElementUniquenessType":"uniqueText"},{"id":"Price History","type":"SelectorTable","parentSelectors":["Element Click"],"selector":"table.zsg-table","multiple":true,"columns":[{"header":"Date","name":"Date","extract":true},{"header":"Event","name":"Event","extract":true},{"header":"Price","name":"Price","extract":true},{"header":"Agents","name":"Agents","extract":true}],"delay":0,"tableDataRowSelector":"tr.zsg-table_interactive","tableHeaderRowSelector":"thead tr,zsg-sm-hide"}]}
1 Like

@bretfeig doesnt work. for some reason no data is extracted in csv. ive imported the json code but still no luck

Still looking for help, would appreciate it. Anybody?

@iconoclast help please.

still not working for me....

Hi there!

Does this one fills your needs?

{"_id":"zillow2","startUrl":["https://www.zillow.com/homes/for_sale/26842569_zpid/32.860772,-96.600981,32.796005,-96.724405_rect/12_zm/1_fr/"],"selectors":[{"id":"click_to_view","type":"SelectorElementClick","parentSelectors":["_root"],"selector":"table.zsg-table tbody tr","multiple":true,"delay":"1000","clickElementSelector":"[class='zsg-h2 hdp-collapsible-title'] span:contains('Price / Tax History')","clickType":"clickOnce","discardInitialElements":false,"clickElementUniquenessType":"uniqueText"},{"id":"DATE","type":"SelectorText","parentSelectors":["click_to_view"],"selector":"td:nth-of-type(1)","multiple":false,"regex":"","delay":0},{"id":"EVNT","type":"SelectorText","parentSelectors":["click_to_view"],"selector":"td:nth-of-type(2)","multiple":false,"regex":"","delay":0},{"id":"PRICE","type":"SelectorText","parentSelectors":["click_to_view"],"selector":"td:nth-of-type(3)","multiple":false,"regex":"","delay":0},{"id":"DIFF","type":"SelectorText","parentSelectors":["click_to_view"],"selector":"td:nth-of-type(4)","multiple":false,"regex":"","delay":0},{"id":"AGNTS","type":"SelectorText","parentSelectors":["click_to_view"],"selector":"td:nth-of-type(5)","multiple":false,"regex":"","delay":0}]}

that works perfect, thanks!!

1 Like