属性错误:子请求实例没有属性"参数"



当我使用参数运行测试时,我应该能够访问实际的测试参数,认为请求的param属性,但相反,出现此错误:

AttributeError: SubRequest instance has no attribute 'param'

这似乎仅在我使用测试框架时出现pytest-bdd。在下面的测试夹具示例中:

@pytest.fixture(params=(
    {
        'driver_name': 'remote',
        'url': 'http://x.x.x.x:4444/wd/hub',
        'browser': 'safari',
        'platform': 'MAC'
    },
    {
        'driver_name': 'remote',
        'url': 'http://x.x.x.x:4444/wd/hub',
        'browser': 'chrome',
        'platform': 'MAC'
    }
))
def browser_kwargs(request):
    """Webdriver kwargs."""
    return request.param 
@pytest.fixture
def browser(browser_kwargs):
    """Splinter webdriver"""
    return Browser(**browser_kwargs)

我的解决方法是停止让我的测试类从unittest2.TestCase继承:

class ViewTestSuite(unittest2.TestCase):
    '''Raises error'''
class ViewTestSuite():
    '''No error'''

似乎(虽然我不确定(,就我而言,真正的罪魁祸首隐藏在pytest深处,似乎是AttributeError

AttributeError("'TestCaseFunction' object has no attribute 'callspec'",)

被抓住这里,导致param不设置request(在本例中SubRequest(。

相关内容

  • 没有找到相关文章

最新更新