How to scrape 4 tables in bootstrap?

Hi need to scrape 4 parameter tables in 1 single row....but it both

  • scrapes only 1 table
  • OR it scrapes 4 to 4 rows (checked multiple)

Url: https://www.husqvarna.com/cz/vyrobky/retezove-pily/120-mark-ii/967861903/

Sitemap:
{id:"sitemap code"}

You probably tried to use Type: Table, but it would not work for this case. You'll need to build each scraper row manually, e.g.:

{"_id":"forum-husqvarna-test","startUrl":["https://www.husqvarna.com/cz/vyrobky/retezove-pily/120-mark-ii/967861903/"],"selectors":[{"id":"Name","type":"SelectorText","parentSelectors":["_root"],"selector":"h1","multiple":false,"regex":"","delay":0},{"id":"Zdroj energie","type":"SelectorText","parentSelectors":["_root"],"selector":"div.row.spec:contains('Zdroj energie') div > strong","multiple":false,"regex":"","delay":0},{"id":"Délka lišty","type":"SelectorText","parentSelectors":["_root"],"selector":"div.row.spec:contains('Délka lišty') div > strong","multiple":false,"regex":"","delay":0},{"id":"Velikost výrobku, DxŠxV","type":"SelectorText","parentSelectors":["_root"],"selector":"div.row.spec:contains('Velikost výrobku') div > strong","multiple":false,"regex":"","delay":0}]}