JavaScript table?

Hi guys,

I'm trying to export a table with specifications out of a productpage (see url + id).
But as far as i can see it's not a regular table that's being used. I believe there's some js code in there?

Do you have any idea how i can scrape this page with the content in the product-specifications tables?

Thanks for reading!

Url: https://www.coolblue.nl/product/735246/aeg-l8fb86es.html#product-specifications

Sitemap:
{"_id":"wasmachines_allemaal","startUrl":["https://www.coolblue.nl/wasmachines"],"selectors":[{"id":"productlink","type":"SelectorLink","parentSelectors":["_root"],"selector":".product-card__title a","multiple":true,"delay":0},{"id":"product_titel","type":"SelectorText","parentSelectors":["productlink"],"selector":"span.js-product-name","multiple":false,"regex":"","delay":0},{"id":"product_specs","type":"SelectorText","parentSelectors":["productlink"],"selector":".js-preferred-specifications","multiple":false,"regex":"","delay":0},{"id":"tabel titel","type":"SelectorText","parentSelectors":["productlink"],"selector":".js-specifications-content div.grid-section-xs--gap-6:nth-of-type(1)","multiple":true,"regex":"","delay":0}]}

You will need to create scrapers for each field you are interested in, as shown in the example sitemap below. I used Page load delay: 6000

{"_id":"forum-coolblue","startUrl":["https://www.coolblue.nl/product/735246/aeg-l8fb86es.html#product-specifications"],"selectors":[{"id":"Product name","type":"SelectorText","parentSelectors":["_root"],"selector":"span.js-product-name","multiple":false,"regex":"","delay":0},{"id":"Artikelnummer","type":"SelectorText","parentSelectors":["_root"],"selector":"dt:contains('Artikelnummer') + dd","multiple":false,"regex":"","delay":0},{"id":"Fabrikantcode","type":"SelectorText","parentSelectors":["_root"],"selector":"dt:contains('Fabrikantcode') + dd","multiple":false,"regex":"","delay":0},{"id":"Vulgewicht","type":"SelectorText","parentSelectors":["_root"],"selector":"dt:contains('Vulgewicht') + dd","multiple":false,"regex":"","delay":0}]}