Rollo的Python之路Python 爬虫系统学习 Selenium 模拟登录
Posted rollost
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Rollo的Python之路Python 爬虫系统学习 Selenium 模拟登录相关的知识,希望对你有一定的参考价值。
selenium 模拟登录:
from selenium import webdriver import time driver = webdriver.Chrome() driver.get("https://www.douban.com/") driver.find_element_by_id("form_email").send_keys("your account") driver.find_element_by_id("form_password").send_keys("password") time.sleep(5) driver.find_element_by_class_name("bn-submit").click() cookies = i["name"]:i["value"] for i in driver.get_cookies() print(cookies) time.sleep(3) driver.close() driver.quit()
以上是关于Rollo的Python之路Python 爬虫系统学习 Selenium 模拟登录的主要内容,如果未能解决你的问题,请参考以下文章
Rollo的Python之路Python 爬虫系统学习 Selenium
Rollo的Python之路Python 闭包:Colsure