由于自己不怎么会javascripts,无法找全所有的参数进行模拟提交,所以只能寻求Selenium和PhantpmJS的方式。
先说下ubuntu上怎么安装相应的环境,尤其PhantomJS安装比较蛋疼。其他内容后续再补
1.环境配置
pip install selenium
安装PhantomJS采取曲线救国的方式:先安装NodeJs, 再用NodeJS 的包管理工具安装PhantomJS.
sudo apt-get install nodejs-legacy sudo apt-get install npm npm -g install phantomjs
查看是否安装成功:
phantomjs --version
#参考#