Bootstrap

Python用selenium获取Cookie并用于登录。

不能一味地看网上的代码,Cookie代码格式有的不一样

selenium官网有自带的中文教程,但是有点不仔细。中文官方连接在这3-7

用贴吧举个例吧

上连接 http://www,baidu.com

from selenium import webdriver
from selenium.webdriver.common import keys
import time
import json
import os


class TieBa:
    def __init__(self):
        self.driver = webdriver.Chrome()
        self.url = 'https://www.baidu.com'

    def main_html(self):
        self.driver.get(self.url)
        self.driver.find_element_by_xpath('//*[@id="s-top-left"]/a[6]').click() # 在百度页面点击贴吧。
        self.driver.switch_to.window(self.driver.
;