V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
推荐学习书目
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 · 2020-01-21 15:50:06 +08:00 · 2209 次点击
    这是一个创建于 1549 天前的主题,其中的信息可能已经有所发展或是发生改变。
    代码如下:

    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  
       2020-01-23 14:24:04 +08:00
    vcyber.json 当中的 cookies 的 domain 不是 passport.zhaopin.com 导致出错
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   3434 人在线   最高记录 6543   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 26ms · UTC 11:19 · PVG 19:19 · LAX 04:19 · JFK 07:19
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.