下面显示了我的测试类。当我打电话一次时,这是一个很好的测试 - python3 main.py
。
如果我希望此测试运行100次,则会出现问题。怎么做?
当我尝试通过pytest调用时,会出现类似警告:
main.py::TestLoginPage::test_login_invalid_credentials
/home/-----/.local/lib/python3.5/site-packages/pytest_repeat.py:31: UserWarning: Repeating unittest class tests not supported
"Repeating unittest class tests not supported")
main.py::TestLoginPage::test_login_valid_credentials
/home/-----/.local/lib/python3.5/site-packages/pytest_repeat.py:31: UserWarning: Repeating unittest class tests not supported
"Repeating unittest class tests not supported")
这是我的测试类 - test_login_page.py
import unittest
from selenium import webdriver
from tests.test_driver import TestDriver
from pages.login_page import LoginPage
class TestLoginPage(unittest.TestCase):
@classmethod
def setUpClass(cls):
cls.page_url = LoginPage.login_url
cls.webdriver = webdriver
TestDriver.setUp(cls, cls.page_url)
cls.page = LoginPage(cls.webdriver)
cls.option = 1
def __init_test_method(self):
# [TS001].Check if page is loaded correctly
self.assertTrue(self.page.check_page_loaded_correctly)
# [TS002].Check button contains 'login' text
self.assertEqual(self.page.get_button_text(), 'Login')
# TC001
def test_login_valid_credentials(self):
"""Test login with valid credentials"""
self.__init_test_method()
# [TS003].Clear form, fill with correct data and submit
self.assertEqual(self.page.login_process(self.option), 'Complexes')
# TC002 (invalid password) & TC003 (invalid username)
def test_login_invalid_credentials(self):
"""Test login with invalid credentials"""
for option in range(2, 4):
self.__init_test_method()
self.assertTrue(self.page.login_process(option))
@classmethod
def tearDownClass(cls):
cls.webdriver.quit()
这是我从控制台运行所有测试的主要内容 - main.py
import unittest
import os
import sys
cwd = os.getcwd()
sys.path.append(cwd)
from tests.test_login_page import TestLoginPage
if __name__ == '__main__':
unittest.main()
答案 0 :(得分:0)
如果你想反复运行你的测试,我建议你使用ddt或数据驱动的测试。您可以找到完整使用的文档Section 5。
您将使用ddt修饰测试类,使用file_data或数据修改测试方法以传递唯一的测试参数。
这将允许您为测试的每次迭代提供新的测试参数,并且会循环并运行相同的测试方法,无论您需要多少次。
以下是我如何使用它的示例:
from ddt import ddt, file_data
@ddt
class MyTestClass(unittest.TestCase):
@file_data('test_parameter_file.json')
def some_test_method1(self, test_package):
Some test method
我在test_parameter_file.json文件中有不同的测试参数,我的测试方法是针对文件中的每个参数运行的。