推荐学习书目
Learn Python the Hard Way
Python Sites
PyPI - Python Package Index
http://diveintopython.org/toc/index.html
Pocoo
值得关注的项目
PyPy
Celery
Jinja2
Read the Docs
gevent
pyenv
virtualenv
Stackless Python
Beautiful Soup
结巴中文分词
Green Unicorn
Sentry
Shovel
Pyflakes
pytest
Python 编程
pep8 Checker
Styles
PEP 8
Google Python Style Guide
Code Style from The Hitchhiker's Guide
soho176
V2EX  ›  Python

这代码执行后,网站是登录状态了,但是 pycharm 提示很多错误,是咋回事那?

  •  
  •   soho176 · Jan 21, 2020 · 2657 views
    This topic created in 2315 days ago, the information mentioned may be changed or developed.
    代码如下:

    from selenium import webdriver
    from time import sleep
    import time
    import json
    from selenium.webdriver.firefox.options import Options
    driver =webdriver.Firefox()
    driver.delete_all_cookies()
    driver.get("https://passport.zhaopin.com/login")
    time.sleep(2)
    f1 = open('vcyber.json')
    cookie = f1.read()
    cookie = json.loads(cookie)
    for c in cookie:
    driver.add_cookie(c)
    driver.refresh()

    提示错误如下:
    Traceback (most recent call last):
    File "D:/PycharmProjects/untitled4/.idea/zhaopin-zz.py", line 16, in <module>
    driver.add_cookie(c)
    File "D:\ProgramData\Anaconda3\envs\guoguo\lib\site-packages\selenium\webdriver\remote\webdriver.py", line 894, in add_cookie
    self.execute(Command.ADD_COOKIE, {'cookie': cookie_dict})
    File "D:\ProgramData\Anaconda3\envs\guoguo\lib\site-packages\selenium\webdriver\remote\webdriver.py", line 321, in execute
    self.error_handler.check_response(response)
    File "D:\ProgramData\Anaconda3\envs\guoguo\lib\site-packages\selenium\webdriver\remote\errorhandler.py", line 242, in check_response
    raise exception_class(message, screen, stacktrace)
    selenium.common.exceptions.InvalidCookieDomainException: Message: Cookies may only be set for the current domain (passport.zhaopin.com)
    krixaar
        1
    krixaar  
       Jan 23, 2020
    vcyber.json 当中的 cookies 的 domain 不是 passport.zhaopin.com 导致出错
    About   ·   Help   ·   Advertise   ·   Blog   ·   API   ·   FAQ   ·   Solana   ·   2960 Online   Highest 6679   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 466ea39e · 37ms · UTC 08:57 · PVG 16:57 · LAX 01:57 · JFK 04:57
    ♥ Do have faith in what you're doing.