Metadata-Version: 2.1
Name: automation-report
Version: 1.0.2
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/1.0.1.tar.gz
Keywords: automation report,report,automation
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
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.


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

### Code Example
```
# Importing 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()
```
### Screenshots of report of above code
![Automation Report](https://user-images.githubusercontent.com/12621555/74203965-7aabad00-4c99-11ea-9f9f-95323a5c0e63.png)

![Automation report](https://user-images.githubusercontent.com/12621555/74203964-797a8000-4c99-11ea-8760-6c6e2691ab29.png)

