Issue to pick image from variations

Hello guys, I have an issue, I want to scrap the image for a specific variation of product.
When I pick the variation, I want to have the good pic scrap,
Thx :wink:

{"_id":"boutiquebob","startUrl":["https://boutiquedubob.fr/"],"selectors":[{"clickElementSelector":"#Details-HeaderMenu-2 svg","clickElementUniquenessType":"uniqueText","clickType":"clickOnce","delay":2000,"discardInitialElements":"do-not-discard","id":"clickopen","multiple":false,"parentSelectors":["_root"],"selector":"body","type":"SelectorElementClick"},{"id":"categorie","multiple":true,"parentSelectors":["clickopen"],"selector":"#HeaderMenu-MenuList-2 a","type":"SelectorLink"},{"id":"product picker","multiple":true,"parentSelectors":["categorie"],"selector":"a.full-unstyled-link","type":"SelectorLink"},{"id":"Title","multiple":false,"parentSelectors":["product picker"],"regex":"","selector":"h1","type":"SelectorText"},{"id":"price","multiple":false,"parentSelectors":["product picker"],"regex":"","selector":".price--large span.price-item--regular","type":"SelectorText"},{"id":"Desc","multiple":false,"parentSelectors":["product picker"],"regex":"","selector":"div.product__description","type":"SelectorText"},{"extractAttribute":"content","id":"meta desc","multiple":false,"parentSelectors":["product picker"],"selector":"meta[name=description]","type":"SelectorElementAttribute"},{"clickElementSelector":"fieldset:nth-of-type(1) label","clickElementUniquenessType":"uniqueText","clickType":"clickOnce","delay":2000,"discardInitialElements":"do-not-discard","id":"variantes","multiple":true,"parentSelectors":["product picker"],"selector":"body","type":"SelectorElementClick"},{"id":"image","multiple":true,"parentSelectors":["variantes"],"selector":".is-active img","type":"SelectorImage"}]}

@LuiLui Hello, to achieve that you will have to set the 'Element click' selector as a 'parent' for the name, description, image and other selectors you are looking to extract from the product page.

Here's an example:

{"_id":"boutiquebob","startUrl":["https://boutiquedubob.fr/products/bob-naruto-4-coloris?variant=40539344175241"],"selectors":[{"id":"Title","multiple":false,"parentSelectors":["colour-variants"],"regex":"","selector":"h1","type":"SelectorText"},{"id":"price","multiple":false,"parentSelectors":["colour-variants"],"regex":"","selector":".price--large span.price-item--regular","type":"SelectorText"},{"id":"Desc","multiple":false,"parentSelectors":["colour-variants"],"regex":"","selector":"div.product__description","type":"SelectorText"},{"extractAttribute":"content","id":"meta desc","multiple":false,"parentSelectors":["colour-variants"],"selector":"meta[name=description]","type":"SelectorElementAttribute"},{"clickElementSelector":"fieldset.product-form__input:contains(\"Couleur\") label","clickElementUniquenessType":"uniqueCSSSelector","clickType":"clickOnce","delay":1000,"discardInitialElements":"discard-when-click-element-exists","id":"colour-variants","multiple":true,"parentSelectors":["_root"],"selector":"body","type":"SelectorElementClick"},{"id":"image","multiple":true,"parentSelectors":["colour-variants"],"selector":".is-active img","type":"SelectorImage"}]}