1
我用casperjs取消了頁面https://www.wikifolio.com/de/de/home一段時間。最近,它需要登錄才能看到頁面上的信息,我無法使其工作。我似乎無法找到我必須點擊哪個項目才能擺脫免責聲明,然後再登錄到網站。無法使用casperjs登錄工作
我用casperjs取消了頁面https://www.wikifolio.com/de/de/home一段時間。最近,它需要登錄才能看到頁面上的信息,我無法使其工作。我似乎無法找到我必須點擊哪個項目才能擺脫免責聲明,然後再登錄到網站。無法使用casperjs登錄工作
有可能與兩種不同的方式,這將工作:
var casper = require('casper').create({
verbose: true,
logLevel: 'debug',
waitTimeout: 5000,
userAgent: 'Mozilla/5.0 (X11; Linux x86_64; rv:49.0) Gecko/20100101 Firefox/49.0',
viewportSize:{width: 1600, height: 900}
});
casper
.on("error", function(msg){ this.echo("error: " + msg, "ERROR") })
.on("page.error", function(msg, trace){ this.echo("Page Error: " + msg, "ERROR") })
.on("remote.message", function(msg){ this.echo("Info: " + msg, "INFO") });
casper
.start("https://www.wikifolio.com/de/de/home", function(){
this.click('div.js-change-country-mode-btn');
this.wait(500,function(){this.click('a.js-login-button')});
this.wait(500,function(){
this.fillSelectors('form[action$=login]', {
"input#Username" : "[email protected]",
"input#Password" : "<pass>"
},true);
})
})
.then(function(){
this
.capture("Afterlogin.png")
.wait(5000,function(){ this.capture("Afterlogin2.png") })
})
.run();
您可以使用sendKeys() 而不是fillSelectors()。
文件:Afterlogin.png
文件:Afterlogin2.png
這將工作太:
可以使用的cookie做到這一點:
var casper = require('casper').create({
verbose: true,
logLevel: 'debug',
waitTimeout: 5000,
userAgent: 'Mozilla/5.0 (X11; Linux x86_64; rv:49.0) Gecko/20100101 Firefox/49.0',
viewportSize:{width: 1600, height: 900}
});
casper
.on("error", function(msg){ this.echo("error: " + msg, "ERROR") })
.on("page.error", function(msg, trace){ this.echo("Page Error: " + msg, "ERROR") })
.on("remote.message", function(msg){ this.echo("Info: " + msg, "INFO") });
//for www.wikifolio.com/de/de/home auth
phantom.cookies = [{// an array of objects
'name' : 'theAuthCookie',
'value' : '<very long string>',
'domain' : 'www.wikifolio.com',
'path' : '/',
'httponly' : false,
'secure' : true,
'expires' : (new Date()).getTime() + (1000 * 60 * 60 * 43800) //5 years
},{ 'name' : 'DisclaimerCountryPopupV2',
'value' : 'de',
'domain' : 'www.wikifolio.com',
'path' : '/',
'httponly' : false,
'secure' : true,
'expires' : (new Date()).getTime() + (1000 * 60 * 60 * 43800) }]
var target = "https://www.wikifolio.com/de/de/alle-wikifolios/suche#/?tags=aktde,akteur,aktusa,akthot,aktint,etf,fonds,anlagezert,hebel&media=true&private=true&assetmanager=true&theme=true&super=true&WithoutLeverageProductsOnly=true&languageOnly=true"
casper
.start(target, function(){ })
.then(function(){
this
.capture("Afterlogin.png")
.wait(5000,function(){ this.capture("Afterlogin2.png") })
})
.run();
在第二個解決方案,其中是登錄?或者我必須附加登錄名? –
我猜你的登錄信息存儲在'theAuthCookie'的值中? –