Scraping Table where property headers are listed in 1st column column

product link Single product link :Click here

I cant extract the table as headers are in same column,but web scraper taking first row as headers,whereas i need first column as header

The book property names are listed in 1st column,But in documentation extracting vertical table rules are shown,how can i extract when its a horizontal column, is this feature available or I need to post request?

Sounds like you're using Type: Table which would not work for your case. You'll need to manually add a scraper for each line you want, e.g.

{"_id":"forum-centralbooksonline","startUrl":["https://www.centralbooksonline.com/boot-click-enter-class-1.html"],"selectors":[{"id":"Title","type":"SelectorText","parentSelectors":["_root"],"selector":"h1","multiple":false,"regex":"","delay":0},{"id":"SKU","type":"SelectorText","parentSelectors":["_root"],"selector":"tr th:contains('SKU') ~ td.data","multiple":false,"regex":"","delay":0},{"id":"Product Title","type":"SelectorText","parentSelectors":["_root"],"selector":"tr th:contains('Product Title') td.data","multiple":false,"regex":"","delay":0},{"id":"Board","type":"SelectorText","parentSelectors":["_root"],"selector":"tr th:contains('Board') ~ td.data","multiple":false,"regex":"","delay":0}]}

1 Like