当前位置:   article > 正文

selenium获取cookie保存和使用_java通过selenium获取cookie如何存到数据库中

java通过selenium获取cookie如何存到数据库中
selenium获取cookie,忘记从哪儿转载的了,留一下做个备份
  • 1
# -*- coding: utf-8 -*-
from selenium import webdriver
import time
import json
from selenium.webdriver.support import expected_conditions as EC
from selenium.webdriver.support.wait import WebDriverWait
from selenium.webdriver.chrome.options import Options
from selenium.webdriver.common.by import By


def browser_initial():
    """"
    进行浏览器初始化
    """
    log_url = 'https://wx.xxx.com//tiku/exam/item/405592?papertype=2'

    chrome_options = Options()
    # chrome_options.add_argument('--headless')  # 设置无界面
    chrome_options.add_argument('disable-infobars')
    user_agent = (
        "User-Agent='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36'")

    chrome_options.add_argument('user-agent=%s' % user_agent)
    browser = webdriver.Chrome(chrome_options
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/很楠不爱3/article/detail/608311
推荐阅读
相关标签
  

闽ICP备14008679号