Simple report for your test automation including various cases/steps specifying its valid status.
Project description
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()
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Close
Hashes for automation_report-1.0.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | c092973e0d297ab75622abdc9c5f7e8ddc67e993f6987914ceffc841306f2ed5 |
|
MD5 | f5dd5f9312d90669bc869dd59ea84abb |
|
BLAKE2b-256 | 870f58551e3b15700f11da9fa03a665127ad01e31b82723c96277bef889a6af7 |