I'm trying to fetch one table from DOM and print it to the shell.
this.waitForSelector("table[bgcolor|='#ffffff']",function(){
casper.echo(document.querySelector("table[bgcolor|='#ffffff']"));
});
But it keeps printing null
.
What am I missing?