Scrape Window Inside a Page

Hi!

Im tryng to scrape all the product info from this page.Ive already achieved to scrape everything I need from the page, but there is data that i need inside the window called "composición" that needs to be cliked to show the info.

When you cliked it the url do not change,so i cannot be treated as a link.

I dont know how to do to extract the data from this window inside this page

I attatch the actual sitemap that im using.

Please could anyone hell me @chefas

Thank you

Url: https://www.storececotec.com/es/robots-aspiradores/118-conga-excellence-990.html

Sitemap:
{"_id":"cecotec","startUrl":["https://www.storececotec.com/es/29-robots-aspiradores"],"selectors":[{"id":"Link","type":"SelectorLink","parentSelectors":["_root"],"selector":"a.product_img_link","multiple":true,"delay":0},{"id":"Titulo","type":"SelectorText","parentSelectors":["Link"],"selector":"h1","multiple":false,"regex":"","delay":0},{"id":"Short-description","type":"SelectorText","parentSelectors":["Link"],"selector":"h2[itemprop='subtitle']","multiple":true,"regex":"","delay":0},{"id":"Precio","type":"SelectorText","parentSelectors":["Link"],"selector":".col-7 span","multiple":false,"regex":"","delay":0},{"id":"Referencia","type":"SelectorText","parentSelectors":["Link"],"selector":"span[itemprop='sku']","multiple":false,"regex":"","delay":0},{"id":"Descripcion","type":"SelectorText","parentSelectors":["Link"],"selector":".active div.rte","multiple":false,"regex":"","delay":0},{"id":"Composicion element","type":"SelectorElementClick","parentSelectors":["Link"],"selector":"div.product-tabs","multiple":false,"delay":0,"clickElementSelector":"a[aria-controls='composition']","clickType":"clickOnce","discardInitialElements":"do-not-discard","clickElementUniquenessType":"uniqueHTML"},{"id":"composicion-text","type":"SelectorText","parentSelectors":["Composicion element"],"selector":".active div","multiple":false,"regex":"","delay":0}]}

use element click with the click selector tied to the tab and the other selector option complete highlighting the data you want.. Make another element as a child and use text selector to grab the data.

Hi!
It works!

Thank you so much!