A tool for fixing broken Robot Framework output files
Project description
Fixml is a tool to fix Robot Framework output files that are not properly finished or are missing elements from the middle. It should be possible to generate reports and logs from the fixed output afterwards with the Rebot tool.
Installation
This tool is installed with pip with command:
$ pip install robotfixml
Fixml uses BeautifulSoup 3 which should be automatically installed by the above command.
Alternatively you can download both Fixml and BeautifulSoup source distributions, extract them and install using:
$ python setup.py install
Command line usage
$ python -m robotfixml example.xml fixed.xml
Programmatic usage
from robotfixml import fixml
inpath = '/directory/example.xml'
outpath = '/directory/output/example-fixed.xml'
fixml(inpath, outpath)
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
robotfixml-1.0.tar.gz
(2.7 kB
view hashes)