-
-
Save wangshijun/16011f9098613615100db7f0caac1ddc to your computer and use it in GitHub Desktop.
Fake Referrer with CasperJS
This file contains hidden or 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