如何同步 Django 的 'Client' 和 Selenium 的 webdriver 之间使用的 html/session

How can I sync the html/session used between Django's 'Client' and Selenium's webdriver

我正在尝试测试登录用户是否可以使用 Lettuce、Selenium 和 lettuce_webdriver 在我的 Django 站点上注销。

在我的 terrain.py 我有:

@before.all
def setup_browser():
    profile = webdriver.FirefoxProfile()
    profile.set_preference('network.dns.disableIPv6', True)
    world.browser = webdriver.Firefox(profile)
    world.client = Client(HTTP_USER_AGENT='Mozilla/5.0')

然后当我 'login':

@step(r'I am logged in as "(\w*)"')
def log_in(step, name):
    world.client.login(username=name, password=name)

我去我的网站:

And I go to "localhost:8000"
    I find a link called "Logout ?" that goes to "/logout"

@step(r'I find a link called "(.*?)" that goes to "(.*?)"$')
def find_link(step, link_name, link_url):
    print(world.browser.page_source)
    elem = world.browser.find_element_by_xpath(r'//a[@href="%s"]' % link_url)
    eq_(elem.text, link_name)

但是我的 page_source 显示我没有登录。这种情况是有道理的...因为 clientbrowser 没有互相交谈。但这是可能的,还是我需要通过单击带有 selenium 等的链接来登录 'manually'?

我想这样做:

 world.browser.page_source = world.client.get(world.browser.current_url).content

但是page_source无法更改。我可以通过某种方式从 django 的客户端提供 Selenium 吗?

编辑:根据下面的 建议,我的 'I am logged in as ...' 步骤如下。我添加了 if/else 来检查我的怀疑。我的客户端仍然如上设置(参见上面的 setup_browser 步骤)

@step(r'I am logged in as "(\w*)"')
def log_in(step, name):
    world.client.login(username=name, password=name)
    if world.client.cookies:
        session_key = world.client.cookies["sessionid"].value
        world.browser.add_cookie({'name':'sessionid', 'value':session_key})
        world.browser.refresh()
    else: 
        raise Exception("No Cookies!")

我看到的所有建议都是先登录。没有我的支票,我得到这个:

  Scenario: Logged in users can logout                       # \gantt_charts\features\index.feature:12
    Given I am logged in as "elsepeth"                                # \gantt_charts\features\steps.py:25
    Traceback (most recent call last):
      File "C:\Python34\lib\site-packages\lettuce\core.py", line 144, in __call__
        ret = self.function(self.step, *args, **kw)
      File "D:\Django_Projects\gAnttlr\gantt_charts\features\steps.py", line 27, in log_in
        session_key = world.client.cookies["sessionid"].value
    KeyError: 'sessionid'

我没有尝试完全你想做的事情,但我做过类似的事情。在使用 Client 实例登录到 Django 站点后,您需要做的是在您的 Selenium 实例上设置一个这样的 cookie:

driver.add_cookie({'name': 'sessionid', 'value': session_key})

名称应与您在 Django 站点上的 SESSION_COOKIE_NAME 设置相同(sessionid 是默认值)。你需要计算出 session_key 的值。

您可以像这样从 Client 实例中获取它:

    session_key = client.cookies["sessionid"].value

请注意,如果 SESSION_COOKIE_SECURETrue,Selenium 将无法为某些浏览器设置 cookie 。对于生产服务器,您应该将此设置设为 True,但如果您希望 Selenium 测试设置会话 cookie,则必须将其设置为 False 以进行测试。

一旦您的 Selenium 实例拥有 cookie,它就会在 Django 看来就像您使用 Selenium 登录一样。正如我所说,我在我的测试套件中做了一些 similar 的事情。 (我用的不是Client,但是原理是一样的。)