如何爬取网页数据

https://selenium-python.readthedocs.io/navigating.html

https://blog.csdn.net/chengxuyuanyonghu/article/details/79154468

关键是要明白webdriver是基于浏览器驱动的;所以在创建浏览区驱动的时候要么在环境变量中配置了驱动所在路径,要么就是要在初始化的时候把文件的全路径路径(包括可执行文件)进行指定。具体chrome的处理可以参见官网(https://sites.google.com/a/chromium.org/chromedriver/getting-started)

 

 

遇到windows认证情况:

http://admin:123456@192.168.123.79/en.asp

基本模式:http://username:password@url

 

posted on 2019-03-26 13:44  张叫兽的技术研究院  阅读(293)  评论(0编辑  收藏  举报

导航