Allure is a popular reporting framework that provides detailed and visually appealing reports for test execution results. It's commonly used in combination with Selenium and Python for creating informative test reports. To use Allure with Selenium and Python.
1). download allure report ( https://repo.maven.apache.org/maven2/... )
2). Makesure available in environment variable :
C:\Program Files\YY\allure-commandline-2.19.0\allure-2.19.0\bin
3). check version via cmd line
allure --version
4). Test execution
allure serve allure_report
allure generate allure_report
detail feature can be check here : https://docs.qameta.io/allure/
#allure #reporting #awesome #generateallurereport