我正在尝试使用Django 1.10.4设置LiveServerTestCase。每当我运行测试时,浏览器都会挂起并且无法访问localhost。我的前端是一个单独的角度/反应应用程序。所以,我使用grunt构建我的静态资产,然后运行collectstatic。以下是我测试的代码。
from django.test.testcases import LiveServerTestCase
from selenium import webdriver
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
from selenium.webdriver.common.by import By
class ChromeTestCase(LiveServerTestCase):
@classmethod
def setUpClass(cls):
super(ChromeTestCase, cls).setUpClass()
cls.driver = webdriver.Chrome('/path/to/chromedriver')
cls.driver.implicitly_wait(10)
cls.wait = WebDriverWait(cls.driver, 10)
@classmethod
def tearDownClass(cls):
cls.driver.quit()
super(ChromeTestCase, cls).tearDownClass()
def test_user_sign_up_from_form(self):
self.driver.get('%s%s' % (self.live_server_url, '/'))
self.wait.until(EC.presence_of_element_located((By.XPATH, '//input[@id="email"]')))
email_input = self.driver.find_element_by_xpath(
'//input[@id="email"]')
email_input.send_keys("test@gmail.com")
password_input = self.driver.find_element_by_xpath(
'//input[@id="password"]')
password_input.send_keys("secret")
signup_button = self.driver.find_elements_by_xpath(
'//*[@id="signup_button"]')
signup_button.click()
url = self.live_server_url + '/home'
self.assertEquals(self.driver.current_url, url)
有谁知道为什么我的测试无法到达测试服务器?
此外,我的测试服务器创建的网址是https。
答案 0 :(得分:3)
该问题最终与中间件有关,该中间件在生产时将请求重定向到https。我通过删除中间件来完成测试。
答案 1 :(得分:-1)
您可以DEBUG
启用LiveServerTestCase
,添加以下行:
from django.test import override_settings
@override_settings(DEBUG=True)
class ChromeTestCase(LiveServerTestCase):