Casperjs Cannot Click On A Div Button
I have been working on a website scraping project using CasperJS. It is an ASPX website. I could login to the site and then fill the form that runs a search but after filling the f
Solution 1:
casper.then( function () {
this.clickLabel('Submit', 'span');
});
I came across a similar issue and this worked for me.
Post a Comment for "Casperjs Cannot Click On A Div Button"