python使用selenium打开chrome浏览器时带用户登录信息
Posted 修炼之路
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python使用selenium打开chrome浏览器时带用户登录信息相关的知识,希望对你有一定的参考价值。
导读
我们在使用selenium
打开google浏览器的时候,默认打开的是一个新的浏览器窗口,而且里面不带有任何的浏览器缓存信息。当我们想要爬取某个网站信息或者做某些操作的时候就需要自己再去模拟登陆
selenium操作浏览器
这里我们就以CSDN为例,来展示如何让selenium在打开chrome浏览器的时候带上用户的登录信息
- 打开chrome浏览器
from selenium import webdriver
from selenium.webdriver import ChromeOptions
#设置操作的网站
web_url = "https://bbs.csdn.net"
browser = webdriver.Chrome(executable_path=r"D:\\chromedriver_win32\\chromedriver\\chromedriver.exe")
#打开网页
browser.get(web_url)
运行程序之后,打开浏览器的界面如上图所示,可以看出来默认是没有带用户的登录信息的
- 带用户登录信息打开chrome浏览器
- 打开带有用户信息的chrome窗口
"C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe" -remote-debugging-port=9014 --user-data-dir="C:\\\\Users\\\\15053\\AppData\\Local\\Google\\Chrome\\\\User Data"
因为安装chrome的时候是采用的默认安装路径,所以路径就和上面一样。如果安装的时候自定义了路径,就注意修改一下chrome.exe
的路径。
user-data
目录是chrome
缓存数据的目录,里面包含了用户的登录信息。如果你是在你自己的电脑上使用,需要将15053
修改成你自己的用户名。
注意:在执行上面命令的时候建议关闭chrome浏览器
,否则后面在执行python程序的时候,可能无法连接到chrome。
- 使用selenium打开网站
from selenium import webdriver
from selenium.webdriver import ChromeOptions
web_url = "https://bbs.csdn.net"
#加载cookies中已经保存的账号和密码
options = ChromeOptions()
options.add_experimental_option("debuggerAddress", "127.0.0.1:9014")
browser = webdriver.Chrome(executable_path=r"D:\\chromedriver_win32\\chromedriver\\chromedriver.exe",
chrome_options=options)
browser.get(web_url)
可以看到,此时打开的网站已经自带了用户的登录信息
以上是关于python使用selenium打开chrome浏览器时带用户登录信息的主要内容,如果未能解决你的问题,请参考以下文章
python的selenium自动化打开chrome后自动和手工混合操作?
如何在 Python 中使用 Selenium 打开 chrome 开发者控制台?
python使用selenium打开chrome浏览器时带用户登录信息
python使用selenium打开chrome浏览器时带用户登录信息