2016-02-12 49 views
1

我試圖從截圖自動測試Python中,py.test「HTMLReport」對象有沒有屬性「執行」

我已經加入到plugin.py添加到我的pytest-HTML報告:

def pytest_runtest_makereport(__multicall__, item): 
    report = __multicall__.execute() 
    extra = getattr(report, 'extra', []) 
    if report.when == 'call': 
     xfail = hasattr(report, 'wasxfail') 
     if (report.skipped and xfail) or (report.failed and not xfail): 
      url = TestSetup.selenium.current_url 
      report.extra.append(extras.url(url)) 
      screenshot = TestSetup.selenium.get_screenshot_as_base64() 
      report.extra.append(extras.image(screenshot, 'Screenshot')) 
      html = TestSetup.selenium.page_source.encode('utf-8') 
      report.extra.append(extra.text(html, 'HTML')) 
      report.extra.append(extra.html(html.div('Additional HTML'))) 
     report.extra = extra 
    return report 

但運行

py.test --html=report.html filename.py 

當我得到

INTERNALERROR> File "C:\Python27\lib\site-packages\pytest_html\plugin.py", line 288, in pytest_runtest_makereport 
INTERNALERROR>  report = __multicall__.execute() 
INTERNALERROR> AttributeError: 'HTMLReport' object has no attribute 'execute' 

它來自哪裏?

回答

1

這個問題是由於我在類中添加了pytest_runtest_makereport這個事實造成的。它應該在外面。已關閉

相關問題