gpt4 book ai didi

python - 如何使用 python 在 selenium webdriver 中将 cookie 设置为特定域?

转载 作者:太空狗 更新时间:2023-10-29 17:30:16 25 4
gpt4 key购买 nike

您好 StackOverflow 用户。我想要实现的是防止在我的测试打开主页时弹出烦人的帮助框。到目前为止,这是我用来打开主页的方法:

def open_url(self, url):
"""Open a URL using the driver's base URL"""
self.webdriver.add_cookie({'name' : 'tour.index', 'value' : 'complete', 'domain' : self.store['base'] + url})
self.webdriver.add_cookie({'name' : 'tour.map', 'value' : 'complete', 'domain' : self.store['base'] + url})
self.webdriver.get(self.store['base'] + url)

但是,我运行测试后返回的是这样的:

2014-07-23 15:38:19.453057: X Message: u'You may only set cookies for the current domain' ;

如何在实际加载基本测试域之前设置 cookie?

最佳答案

文档建议在设置 cookie 之前导航到虚拟 url(例如 404 页面或图像路径)。然后,设置 cookie,然后导航到您的主页。

Selenium Documentation - Cookies

... you need to be on the domain that the cookie will be valid for. If you are trying to preset cookies before you start interacting with a site ... an alternative is to find a smaller page on the site ... (http://example.com/some404page)

因此,您的代码可能如下所示:

def open_url(self, url):
"""Open a URL using the driver's base URL"""

dummy_url = '/404error'
# Or this
#dummy_url = '/path/to/an/image.jpg'

# Navigate to a dummy url on the same domain.
self.webdriver.get(self.store['base'] + dummy_url)

# Proceed as before
self.webdriver.add_cookie({'name' : 'tour.index', 'value' : 'complete', 'domain' : self.store['base'] + url})
self.webdriver.add_cookie({'name' : 'tour.map', 'value' : 'complete', 'domain' : self.store['base'] + url})
self.webdriver.get(self.store['base'] + url)

关于python - 如何使用 python 在 selenium webdriver 中将 cookie 设置为特定域?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24919525/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com