ICode9

精准搜索请尝试: 精确搜索
首页 > 编程语言> 文章详细

使用selenium的unittest在python中运行完美,但在django manage.py测试中出现导入错误

2019-06-26 02:44:29  阅读:245  来源: 互联网

标签:python django selenium functional-testing importerror


我有这个文件,由Selenium IDE生成

from selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.webdriver.support.ui import Select
from selenium.common.exceptions import NoSuchElementException
import unittest, time, re

class Tcase(unittest.TestCase):
    def setUp(self):
        self.driver = webdriver.Firefox()
        self.driver.implicitly_wait(30)
        self.base_url = "http://localhost:9999/"
        self.verificationErrors = []

    def test_tcase(self):
        driver = self.driver
        driver.get(self.base_url)
        # other things...

    def is_element_present(self, how, what):
        try: self.driver.find_element(by=how, value=what)
        except NoSuchElementException, e: return False
        return True

    def tearDown(self):
        self.driver.quit()
        self.assertEqual([], self.verificationErrors)

if __name__ == "__main__":
    unittest.main()

我正在研究Django项目(1.4)和python 2.6,我想用Selenium进行测试.

如果我直接从python运行此文件它没有问题.

如果我这样做

python manage.py test myapp

我得到导入错误

C:\web\opineo> python .\manage.py test core
Traceback (most recent call last):
  File ".\manage.py", line 14, in <module>
    execute_manager(settings)
  File "C:\Python26\lib\site-packages\django\core\management\__init__.py", line 459, in execute_manager
    utility.execute()
  File "C:\Python26\lib\site-packages\django\core\management\__init__.py", line 382, in execute
    self.fetch_command(subcommand).run_from_argv(self.argv)
  File "C:\Python26\lib\site-packages\django\core\management\commands\test.py", line 49, in run_from_argv
    super(Command, self).run_from_argv(argv)
  File "C:\Python26\lib\site-packages\django\core\management\base.py", line 196, in run_from_argv
    self.execute(*args, **options.__dict__)
  File "C:\Python26\lib\site-packages\django\core\management\base.py", line 232, in execute
    output = self.handle(*args, **options)
  File "C:\Python26\lib\site-packages\south-0.7.3-py2.6.egg\south\management\commands\test.py", line 8, in handle
    super(Command, self).handle(*args, **kwargs)
  File "C:\Python26\lib\site-packages\django\core\management\commands\test.py", line 72, in handle
    failures = test_runner.run_tests(test_labels)
  File "C:\Python26\lib\site-packages\django\test\simple.py", line 380, in run_tests
    suite = self.build_suite(test_labels, extra_tests)
  File "C:\Python26\lib\site-packages\django\test\simple.py", line 264, in build_suite
    suite.addTest(build_suite(app))
  File "C:\Python26\lib\site-packages\django\test\simple.py", line 79, in build_suite
    test_module = get_tests(app_module)
  File "C:\Python26\lib\site-packages\django\test\simple.py", line 36, in get_tests
    test_module = import_module('.'.join(prefix + [TEST_MODULE]))
  File "C:\Python26\lib\site-packages\django\utils\importlib.py", line 35, in import_module
    __import__(name)
  File "C:\web\opineo\core\tests\__init__.py", line 3, in <module>
    from core.tests.func import *
  File "C:\web\opineo\core\tests\func.py", line 1, in <module>
    from selenium import webdriver
  File "C:\web\opineo\core\tests\selenium.py", line 3, in <module>
    from selenium import webdriver
ImportError: cannot import name webdriver

怎么了?硒文件在那里!在Python 2.6的站点包中

编辑:

这工作正如预期的那样打开Firefox

PS C:\web\opineo> python.exe .\manage.py shell
Python 2.6.6 (r266:84297, Aug 24 2010, 18:46:32) [MSC v.1500 32 bit (Intel)] on win32
>>> from selenium import webdriver
>>> driver = webdriver.Firefox()

解决方法:

最后我发现了问题:从test调用的文件名为selenium.py,因此它覆盖了库;一个非常新手的错误.

这就是为什么它在selenium找不到webdriver的原因!

标签:python,django,selenium,functional-testing,importerror
来源: https://codeday.me/bug/20190626/1289324.html

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有