Created
August 24, 2012 16:10
-
-
Save papoms/3452369 to your computer and use it in GitHub Desktop.
Fake Referrer with CasperJS
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var fakeReferrer = "http://porzky.com" | |
var targetUrl = "http://keyworddomains.com" | |
var casper = require('casper').create(); | |
casper.start(fakeReferrer, function() { | |
this.echo(this.getCurrentUrl()); | |
}); | |
casper.then(function(){ | |
this.evaluate(function(){ | |
var link = document.createElement('a'); | |
link.setAttribute('href', 'http://keyworddomains.com'); | |
link.setAttribute('id', "myTargetUrl") | |
document.body.appendChild(link); | |
}); | |
}); | |
casper.then(function() { | |
this.click('a#myTargetUrl'); | |
}); | |
casper.run(function() { | |
this.echo(this.getCurrentUrl()); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yo have to pass it: