http://whatismyipaddress.com/proxy-checkを使用して IP アドレスを確認するコードを次に示します。
var casper = require("casper").create(),
utils = require('utils');
casper.userAgent('Mozilla/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko/20100101 Firefox/17.0');
casper.start("http://whatismyipaddress.com/proxy-check", function() {
this.capture('0.png');
});
casper.on('remote.message', function(msg) {
this.echo('Remote: ' + msg);
})
casper.run(function() {
this.echo('End');
//finish execution script
this.exit();
});
入力casperjs --proxy="xxx.xxx.xxx.xxx:80" proxy.js
しましたが、スクリーンショットはまさに私のマシンの IP アドレスです。
では、プロキシが悪いのか、コードやコマンド ラインに何か問題があるのか、どうすればわかりますか?