2

我正在使用django-selenium在我参与的 django 应用程序上运行 Selenium 测试。这个 django 应用程序使用 Qt 和本地网络服务器在本地运行。

所以要运行测试,我需要启动应用程序的服务器、selenium 服务器,然后是 webdriver 实例来执行测试。

django-selenium 用 a 设置它的服务器,subprocess.Popen('java -jar <path_to_server.jar>')然后如果服务器没有运行,我同样为应用程序运行我们的网络服务器;

def run():
    path = os.path.join(os.getcwd(), 'main.py')
    server_running = is_server_running()

    if server_running is False:
        subprocess.Popen(['python', path, '-a'])

现在在测试设置中看起来像这样;

def setUp(self):
    self.server = Process(target= startServer.run)
    self.server.start()

并拆解;

def tearDown(self):
    # stop our server
    self.ff.get('http://localhost:{0}/QUIT'.format(settings.LISTEN_PORT))
    # stop the selenium server
    self.ff.get('http://localhost:4444/selenium-server/driver/?cmd=shutDownSeleniumServer')
    # close the browser
    self.ff.quit()
    self.server.terminate()

现在在这样做时,我得到一个error: [Errno 10054] An existing connection was forcibly closed by the remote host. 我尝试sleep在调用之间添加以关闭连接,但这没有帮助。

你能看出我可能在哪里犯了错误吗?我认为如果关闭来自远程主机,那么如果我先关闭我们的服务器,然后关闭 selenium 服务器,然后在服务器关闭后终止进程,那么应该不会有问题。

4

1 回答 1

2

我也遇到了这个问题,我通过在退出前刷新浏览器来修复它。(是的,很奇怪,我知道)。尝试在之前添加此行self.ff.quit()

self.ff.refresh()
self.ff.quit()

这为我解决了这个问题,虽然我不知道为什么。

于 2013-08-21T15:30:34.257 回答