How do I click an element in PhantomJS?
page.evaluate(function() { document.getElementById(\'idButtonSpan\').click(); });
This gives
The easiest way is using jQuery.
page.evaluate(function() { page.includeJs("your_jquery_file.js", function() { page.evaluate(function() { $('button[data-control-name="see_more"]').click(); }); }); });