我在使用webshot package时遇到了一个问题:我试图登录到facebook,因为我想拍摄的屏幕截图是不可能没有插入的。下面记录的登录过程有效,但有是一个错误,应该允许cookie。
如何允许Cookie?
library(webshot)
webshot("https://www.facebook.com/FacebookDeutschland/", file = "Test.png",
eval = "casper.then(function() {
this.sendKeys('#login_form #email', 'XXX@XXX');
this.sendKeys('#login_form #pass', 'XXX');
this.click('#u_0_2');
this.wait(1000);
});"
)
非常感谢你的帮助!