Metadata-Version: 2.0
Name: automation-report
Version: 0.0.7
Summary: Simple report for your test automation including various cases/steps specifying its valid status.
Home-page: https://github.com/bibekad123/automation-report
Author: Bibek Adhikari
Author-email: bbekad94@gmail.com
License: MIT
Download-URL: https://github.com/bibekad123/automation-report/archive/0.0.4.tar.gz
Keywords: automation report,report,automation
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown

# automation-report

Python package to generate HTML report of your automation cases and its steps with its valid status.


### Installtion
```
$ pip install automation-report
```

### Code Example
```
# Import following package
from automation_report import report 
# Use starttest() method to start a new case with its name given as parameter
report.starttest("CASE 0001: Test the screen")
# Populate the various steps status with info(), success(), fail() methods for particular case
report.info("Page is opened")
report.success("It works")
report.fail("Well, it didn't worked.")
# End above started case
report.endtest()
# Create yet another case as following
report.starttest("CASE 0002: Another case")
report.info("DOnet screen")
report.success("It works")
report.endtest()
# User close method to finally complete whole report generation
report.close()
```

