No data extracted with Element Click but can with Text

Hi everybody,

I am trying to get the price data from every variation of products on this website:

Url: http://www.eclisse.co.uk/classic-single-pocket-door-system/

I've started off with the size variations (ID: Variation Price) in the hope I could get that working and then move on to Wall Thickness. I can extract the data if I do a simple Text with the selector listed but it doesn't extract any data if I do an element click. Any ideas on how to select all prices for both Size and Wall Thickness would be greatly appreciated. I love this extension but it does throw me some curve balls at times!

Sitemap:

{"_id":"eclissepocketdoor","startUrl":["http://www.eclisse.co.uk/pocket-door-systems"],"selectors":[{"id":"Prod URL","type":"SelectorLink","selector":"h4.card-title a","parentSelectors":["_root"],"multiple":true,"delay":0},{"id":"Prod Name","type":"SelectorText","selector":"h1.productView-title","parentSelectors":["Prod URL"],"multiple":false,"regex":"","delay":0},{"id":"Main Image","type":"SelectorImage","selector":".zoomImg","parentSelectors":["Prod URL"],"multiple":false,"delay":0},{"id":"Other Images","type":"SelectorGroup","selector":".productView-thumbnail-link","parentSelectors":["Prod URL"],"delay":0,"extractAttribute":"href"},{"id":"Product Tabs","type":"SelectorHTML","selector":"div.tab-content","parentSelectors":["Prod URL"],"multiple":true,"regex":"","delay":0},{"id":"Prod Main Text","type":"SelectorHTML","selector":"div.container > div > p","parentSelectors":["Prod URL"],"multiple":true,"regex":"","delay":0},{"id":"Sizing UL","type":"SelectorText","selector":"body > div.body > div.container > div > ul:nth-child(8)","parentSelectors":["Prod URL"],"multiple":true,"regex":"","delay":0},{"id":"Variation Price","type":"SelectorElementClick","selector":".productView-details .price-section--withoutTax span","parentSelectors":["Prod URL"],"multiple":false,"delay":"3000","clickElementSelector":"div.form-field:nth-of-type(1) label.form-option:nth-of-type(n+2)","clickType":"clickOnce","discardInitialElements":false,"clickElementUniquenessType":"uniqueHTMLText"}]}

Hi!

You've created an Element Click selector, but did not add any text selectors inside it to pick the selection.
Element Click works absolutely the same as an Element selector, but also clicks to change content for selector.

I've created an example sitemap (it will work on a single page -- it's just for you to understand the logic of it). It does also require you to know CSS selectors to pick up selected dimensions value as well.

{"_id":"test1","startUrl":["http://www.eclisse.co.uk/classic-single-pocket-door-system/"],"selectors":[{"id":"test","type":"SelectorElementClick","selector":"div.productView","parentSelectors":["_root"],"multiple":true,"delay":"","clickElementSelector":"div.form-field:nth-of-type(1) input.form-radio~","clickType":"clickOnce","discardInitialElements":false,"clickElementUniquenessType":"uniqueText"},{"id":"selection","type":"SelectorText","selector":":checked~","parentSelectors":["test"],"multiple":false,"regex":"","delay":0},{"id":"price","type":"SelectorText","selector":"div.productView-price","parentSelectors":["test"],"multiple":false,"regex":"","delay":0}]}

Now to the hard part -- it will pick all the results only if you either move your mouse inside current image (it zoomes it) or click any images.