Questions tagged [allure]

If you're seeking assistance with Allure Reports for your automated testing, this is the tag to use. Whether you need help with setup, customization, or problem-solving, don't hesitate to ask. Please include information about your testing framework, coding language, and any specific challenges or bugs you've run into.

Discover the art of shaping Allure's legacy

Is there a way to view the results of my Allure test scripts for Day 1 and Day 2, in addition to those from Day 3, after running them daily? The history tab does not load history data. ...

The allure report is failing to connect with the HTML report

My attempts to include a screenshot in my allure report have been unsuccessful. @Test (priority = 1, description="SS1 Verify the login section") @Description ("Verify that user mngr116116 can logon to the system") public void login() { page = new ...

Allure Report Attachments: A Closer Look at

In my Selenium code, I've compiled a list of asserts. I'd like to include all the asserts and responses as attachments for the passing test cases. Additionally, is there a method to add server logs to the attachments for the failing test cases? Please ad ...

Can the creation of an Allure report be done within Python's unittest framework?

Is there a way to generate an allure report in python-unittest, similar to how it's done in Pytest? ...

Trying to create an allure report for my gradle IntelliJ project using a terminal command, but it seems to be taking forever to load. Additionally, I'm encountering a 404 error on

I completed running tests with the first command and then generated a report using the last command to view it. As I am new to using Allure reports, I would appreciate some guidance on how to interpret the report. Project Details Gradle: 7.2 Kotli ...

How can I retrieve arguments/parameters from an Allure report while it is running?

Within our testing framework, we utilize the allures .addArgument method to include a parameter in the report indicating which team is responsible for a specific test. AllureReporter.addArgument('teamName', 'myTeam'); We have numerous tests already create ...

Click on the 'Login' button on the webpage if it is available

Here is what I need: If the 'Login' button is displayed, click on it and proceed with the use case. If the 'Login' button is not present, go ahead with the use case directly (no need to click on 'Login' button). Based on t ...