我正在尝试废弃一个页面: http: //fd1-www.leclercdrive.fr/057701/courses/pgeWMEL009_Courses.aspx#RS284323
但是正如您所看到的, 当您第一次访问此链接时,它会重定向到 fd1-www.leclercdrive.fr/057701/courses/pgeWMEL009_Courses.aspx。点击“fruits et légumes”后,您可以直接使用网址访问该页面
所以我需要模拟点击“Fruits et légumes”按钮来访问我想要的页面。在代码中,它执行回发
这是我与casperj
s 一起使用的代码:
var casper = require('casper').create({
verbose: true,
logLevel: "debug"
});
casper.start('http://fd1-www.leclercdrive.fr/057701/courses/pgeWMEL009_Courses.aspx#RS284323');
// here i simulate the click on "Fruits et légumes"
casper.evaluate(function() {
__doPostBack('objLienReceptdionEvenement','2@@284323');
});
casper.then(function() {
console.log(' new location is ' + this.getCurrentUrl());
});
casper.run();
我仍然被重定向到错误的页面