DEV Community

Cover image for Selenium with Python Behave (BDD)- Allure Reports
MARIANA MONTENEGRO
MARIANA MONTENEGRO

Posted on

Selenium with Python Behave (BDD)- Allure Reports

Como generar reportes atractivos Allure con behave(python bdd framework)

1.Estructura Proyecto Behave Framework

image

2.Instalar allure-behave

-pip install allure-behave
-pycharm package
-npm install -g allure-commandline --save-dev

3.Ejecutar tests cases y generar archivos de reporte de tipo json

behave -f allure_behave.formatter::AllureFormatter -o reports/ features

image

4.Generar reportes Allure

allure serve reports/
image

Top comments (0)