我使用phantomjs在"http://testdomain.com/web/abd/efg"
中几乎没有自动化。但在此之前,我需要使用"http://testdomain.com/"
使用js脚本登录,其中包含用户名和密码字段(在此页面中)。
注意 - 我只能在登录此http://testdomain.com/web/abd/efg
后才能转到此http://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/"
在登录期间通过在命令行中提供--cookies-file=./cookies.txt
来捕获cookie。
我可以使用此捕获的Cookie登录并移至此网址"http://testdomain.com/web/abd/efg"
吗?
任何提示或帮助都是可观的。