View Single Post
  #43  
Old 05-11-2015, 04:05 PM
Quazar Quazar is offline
Junior Member
 
Join Date: Apr 2015
Posts: 8
Quazar is on a distinguished road
Default

Re: MFC, how to see who is online?


I have begun fiddling around with casperjs but it'll take some time for me to get some progress done. Whenever I try accessing any element other than the outer most frame, casperjs acts as if they are not there (selectors are not being found) but the website is being captured fine.

A little example:
Code:
casper.start('http://myfreecams.com/', function() {
    this.echo(this.getTitle());
    casper.capture('step1.png');  // works fine, shows the website with the "I am over 18" button on top.
});

casper.click('#enter_desktop', function() {   // Fails because the selector cannot be found, even though it was clearly shown in step1.png
    this.echo('Passed age gate.');
    casper.capture('step2.png');
}
Reply With Quote