## 前言 爬取一些网页的时候遇到了动态加载,暂时不想用折腾pyexecjs模块,<br/> 于是偷个懒。折腾一下**selenium**。 ## ubuntu 安装google-chro…
标签:selenium
selenium 配置使用举例(1)
## 前言 - **无头浏览**需求 环境搭建起来之后,首先是要处理的问题是无头浏览器的配置使用。<br/> 因为我是部署在阿里云ES服务器上面,作为提供后台服务用的,不用浏览界面…
selenium 常用基本操作(2)
## 前言 因为担心自己忘记了,就在这里记录了一下。由于没想到什么有意思的开头,<br/> 所以用**talk is cheap, show me the code**开头了。 还望见谅,…
selenium 完整案例(3)
## 前言 使用selenium完成12306登陆,重点是熟悉selenium操作 ## code ```python from selenium import webd…
selenium获取cookie及设置cookie
获取cookie:在打开的页面使用 ```css self.driver.get_cookies() ``` 返回下面数据: ``` [{'domain': …