"http://testdomain.com/web/abd/efg"
在使用 phantomjs时,我几乎没有自动化操作要做。但在此之前,我需要"http://testdomain.com/"
使用 js 脚本使用包含用户名和密码字段(在此页面中)的登录。
注意- 我http://testdomain.com/web/abd/efg
只有在登录后才能访问此 urlhttp://testdomain.com/
在我给的js脚本中
page1.settings.userName = 'username';
page1.settings.password = 'password';
并且还与
page.customHeaders={'Authorization': 'Basic '+btoa('username:password')};
如http://darrendev.blogspot.jp/2013/04/phantomjs-post-auth-and-timeouts.html中建议
的打开http://testdomain.com/web/abd/efg
网址。但没有任何效果。
"http://testdomain.com/"
我还通过在命令行中使用在登录期间捕获了 cookie --cookies-file=./cookies.txt
。我可以使用这个捕获的 cookie 登录并移动到这个 url"http://testdomain.com/web/abd/efg"
吗?
任何提示或帮助都是可观的。