Skip to content

Latest commit

 

History

History
37 lines (27 loc) · 780 Bytes

README.md

File metadata and controls

37 lines (27 loc) · 780 Bytes

Report

利用此插件可以在ATX自动化跑完之后,自动生成HTML报告,方便查看每一步的执行情况

Usage

import atx
from atx.ext.report import Report # report lib


d = atx.connect()
rp = Report(d, save_dir='report')
rp.patch_uiautomator() # for android UI test record (optional)

rp.info("Test started") # or rp.info("Test started", screenshot=d.screenshot())
d.click(200, 200)

# keep screenshot when test fails
rp.error("Oh no.", screenshot=d.screenshot())

# close and generate report
rp.close()

After done, HTML report will be saved to report dir. with such directory

report/
  |-- index.html
  |-- result.json
  `-- images/
      |-- before_123123123123.png
      |-- ...

open index.html with browser.

report