I\'m trying to crawl the sizes for this product:
Link to product
The problem: The sizes are loaded after the color of the product is selected.
In th
Got same issue here. My solution is:
casper.then(function(){ this.evaluate(function() { document.querySelector('select.select-category').selectedIndex = 2; //it is obvious }); this.capture('screenshot.png'); });