如何在一次测试运行中使用多个pytest conftest文件和一个重复的parser.addoption?

时间:2017-04-18 07:56:10

标签: pytest fixtures

我有一个运行selenium测试的pytest测试项目,其结构如下:

    ProjRoot
|
|_Pytest.ini
|_____________TestFolderA
|                   |
|                   |_test_folderA_tests1.py
|                   |_test_folderA_tests2.py
|
|____________TestFolderB                
|                   |
|                   |_test_folderB_test1.py
|                   |_test_folderA_tests2.py
|                   
|
|___________TestHelperModules
|                   |
|                   |_VariousTestHelperModules
|
|____________DriversAndTools
                    |___(contains chromedriver.exe, firefox profile folder etc)

我有一个confTest.py文件,我目前在ProjRoot中运行,我将其用作设置并拆除,以便为每个运行的测试建立浏览器会话。它运行每次测试两次。一次用于Chrome,一次用于Firefox。在我的测试中,我只使用生成的驱动夹具。 conftest文件如下:

#conftest.py

import pytest
import os
import rootdir_ref
from selenium.webdriver.common.keys import Keys
import time

from webdriverwrapper.pytest import *
from webdriverwrapper import Chrome
from webdriverwrapper import DesiredCapabilities
from webdriverwrapper import Firefox
from webdriverwrapper import FirefoxProfile



#when running tests from command line we should be able to pass --url=www..... for a different website, check what order these definitions need to be in
def pytest_addoption(parser):
    parser.addoption('--url', default='https://test1.testsite.com.au')

@pytest.fixture(scope='function')
def url(request):
     return request.config.option.url

browsers = {
    'firefox': Firefox,
    'chrome': Chrome,
}

@pytest.fixture(scope='function', 
                params=browsers.keys())
def browser(request):

    if request.param == 'firefox':
        firefox_capabilities = DesiredCapabilities.FIREFOX
        firefox_capabilities['marionette'] = True
        firefox_capabilities['handleAlerts'] = True
        theRootDir = os.path.dirname(rootdir_ref.__file__)
        ffProfilePath = os.path.join(theRootDir, 'DriversAndTools', 'FirefoxSeleniumProfile')
        geckoDriverPath = os.path.join(theRootDir, 'DriversAndTools', 'geckodriver.exe')
        profile = FirefoxProfile(profile_directory=ffProfilePath)
        print (ffProfilePath)
        print (geckoDriverPath)
        b = browsers[request.param](firefox_profile=profile, capabilities=firefox_capabilities, executable_path=geckoDriverPath)

    elif request.param == 'chrome':
        desired_cap = DesiredCapabilities.CHROME
        desired_cap['chromeOptions'] = {}
        desired_cap['chromeOptions']['args'] = ['--disable-plugins', '--disable-extensions']
        theRootDir = os.path.dirname(rootdir_ref.__file__)
        chromeDriverPath = os.path.join(theRootDir, 'DriversAndTools', 'chromedriver.exe')
        b = browsers[request.param](chromeDriverPath)

    else:
        b = browsers[request.param]()
    request.addfinalizer(lambda *args: b.quit())

    return b


@pytest.fixture(scope='function')
def driver(browser, url):
    driver = browser
    driver.maximize_window()
    driver.get(url)
    return driver

我想要做的是在每个测试文件夹而不是ProjRoot中有一个conftest文件。但是如果我把这个现有的conftest文件放在每个测试文件夹中,然后使用

从项目根目录运行pytest
python –m pytest 

让pytest从pytest.ini中获取测试目录(期望测试文件夹与其分别包含的conftest文件一起运行)我遇到了parser.addoption --url已经添加的问题。错误消息的结尾是:

ClientScripts\conftest.py:19: in pytest_addoption
    parser.addoption('--url', default='https://test1.coreplus.com.au/coreplus01')
..\..\..\VirtEnv\VirtEnv\lib\site-packages\_pytest\config.py:521: in addoption
    self._anonymous.addoption(*opts, **attrs)
..\..\..\VirtEnv\VirtEnv\lib\site-packages\_pytest\config.py:746: in addoption
    raise ValueError("option names %s already added" % conflict)
E   ValueError: option names {'--url'} already added

--url addoption的目的是如果我想在命令行覆盖conftest文件中的默认值,如果我想同时将它们全部指向不同的url,但是否则让它们默认运行到不同的url& #39;在他们的conftest文件中指定。

1 个答案:

答案 0 :(得分:0)

我有类似的问题。 删除所有缓存的文件和venv后错误消失。