1,021 questions
0
votes
0
answers
31
views
How do I get my tags, on a single Allure 2 test report pane, to show up in alpha-sorted order?
My team is porting to Allure 2 to report our tests. Our pytest tests have a bunch of attributes that I have implemented as allure tags.
In the report page, when I click on a single test on the left ...
Advice
0
votes
2
replies
80
views
Playwright Allure Report in Email
I had implemented playwright test with typescript. It's working good with following command.
npx allure generate allure-results --clean -o allure-report
npx allure open allure-report
reporter: [['...
0
votes
0
answers
77
views
GitLab CI Allure Report Shows Garbled Characters in Console Output
I'm experiencing intermittent issues with Allure reports in GitLab CI where the console log occasionally displays garbled/corrupted characters instead of readable output.
This doesn't happen ...
0
votes
1
answer
155
views
BehaveX parallel is running my after_all after every feature/scenario
Currently having an issue with my after_all - Whenever i run behavex in parallel through either my scenarios or features it will run the after_all after every feature/scenario is complete
This is my ...
0
votes
0
answers
62
views
Jenkins Allure commandline tool issue
we are using allure command line tool to generate reports and have multiple versions 2.10.0 and 2.32.1. 2.32.1 is set as allure-latest in tools config but when we run the Jenkins pipeline its ...
0
votes
0
answers
83
views
Playwright soft assertion shows unrelated hortReject TypeError instead of actual assertion error
I’m facing an issue with Playwright’s expect.soft where, if a promise is not resolved, the test continues execution as expected (because of the soft assertion). But at the end of the run, instead of ...
0
votes
0
answers
49
views
Getting Compatibility Error while using Allure extension on Azure Devops for self hosted Window Agent
Task : Publish Allure Report
Description : Task for generate and publish Allure Report
Version : 1.4.6
Author : Qameta Software Inc.
Help : Generate and publish Allure ...
0
votes
0
answers
95
views
Allure Playwright not recording actions unless they are within step() or API requests
Allure reports from Playwright tests do not include actions taken outside of step() calls. For example,
step(
"Menu navigation",
() -> {
page.locator("a").filter(...
0
votes
0
answers
91
views
How would I retrieve allure report test id/URL through pytest code
I have the following file in pytest:
def test_empty():
assert False
After starting the allure server:
allure serve
And clicking on the result of the test on the suites page.
We have these ids on ...
0
votes
0
answers
68
views
Allure Reports growing in size for same exact tests running against same build
My allure reports are growing in size running the same test against the same build. Here is the kicker which is blowing my mind on how this could be happening. The VM that is running the test and ...
0
votes
1
answer
84
views
Robot Framework - Auto Allure Generation
I'm trying to bring Allure reporting to my Robot Framework architecture.
I was wondering if there was a possibility to avoid specifying the use of the Allure Listener in the command line to generate a ...
0
votes
1
answer
277
views
How to debug configuration issue with allure-vitest/reporter
I have simple test automation project with TypeScript + Vitest + allure-vitest reporter. I have tried to upgrade/downgrade main dependencies without any luck.
It works perfectly on one type of machine ...
2
votes
0
answers
125
views
allure-cypress plugin version 3.0.7+ throws Unexpected token while parsing allure-cypress\dist\cjs\index.js
I upgraded to 3.0.7 and tested newer versions of allure-cypress plugin as well. When I run my test scripts, I get the following error:
Oops...we found an error preparing this test file: > ...
0
votes
1
answer
79
views
How to create a custom severity from allure-pytest?
I use the libraries allure-pytest=2.13.2 and allure-python-commons=2.13.2 to build an allure-report. I need to change the set of severity values (add "high" and "low"). I can't ...
0
votes
1
answer
793
views
Allure command not recognized , but version command works
I am trying to use Allure for generating test reports. I have installed Allure and added the bin folder path to the system's environment variables. When I run allure version in the terminal, it works ...
2
votes
0
answers
81
views
Allure steps are not displayed in report
I want to use io.qameta.allure.kotlin.Allure.step in my project for my tests and expect them to show in the report. But this is not happening, here is an code example:
step("Create task&...
1
vote
0
answers
79
views
How to keep history trend in Allure Report?
I use Maven for building project: lets say to run test U use mvn clean test; Then I have maven-allure plugin and I generate report once tests completed. I know that to keep history I have to place ...
1
vote
1
answer
120
views
Allure Cypress showing only Cypress commands in Step Execution outcome, but I want BDD / Cucumber output
I use cypress-cucumber-preprocessor + allure-cypress in order to get Allure reporting format.
This is my package.json:
"devDependencies": {
"cypress": "13.15.1",
...
0
votes
0
answers
112
views
Allure doesn't capture screenshots in Listener
public class ScreenshotUtility {
private WebDriver driver;
public ScreenshotUtility(WebDriver driver) {
this.driver = driver;
}
@Attachment(value = "Screenshot for {0}&...
1
vote
1
answer
96
views
Allure html report integrated with Cypress truncates request and response body data
I have Cypress 13.1.0 integrated with Allure (allure-cypress v.3.0.4).
Each test step in the generated html report is displayed truncated to 132 chars maximum (see attachment).
truncation example
Is ...
0
votes
2
answers
409
views
how to set results path for playwright allure reports
How to set results path for playwright allure reports in C#.
I tried below paths and none of them work
public async Task OneTimeSetup() {
Environment.SetEnvironmentVariable("...
1
vote
1
answer
1k
views
Reqnroll Allure report generation problems
I have a test solution, built on:
.NET Framework 4.7.2
NUnit 3.13
Reqnroll 2.0.0
Allure.Reqnroll 2.12.1
AllureReport.Generator 0.1.0
My solution builds, discovers and executes the tests as expected.
...
0
votes
1
answer
191
views
How to set result in AllureApi.Step in Allure reports?
I have the following code in my base class for all Allure-supported tests:
[AllureNUnit]
internal abstract class PageTestBase : Microsoft.Playwright.NUnit.PageTest
{
protected async Task Step(...
0
votes
2
answers
393
views
Appending screenshots or other attachments to steps of Allure report with AOP
I've been researching if it's possible to append screenshots attachments to the specific methods marked by custom @Captured annotation for the Allure reposts using AOP
I created annotation itself and ...
1
vote
1
answer
208
views
Allure Test Report - Steps showing the display name as ClassName.HooksMethodName()
I have cucumber framework with Cucumber hooks setup for Test Steps but the Test method name is displayed on the Ui instead of the step nameReport Snipet
@AfterStep
public static void afterStep(...
0
votes
1
answer
373
views
How do I force pytest testcase to broken category in allure report if soft assertions fail?
I have a test where I do some soft assertions using pytest_check. The test continues to run even if assertions fail and finally fails at the end throwing assertion error.
Now in allure report, I ...
1
vote
1
answer
304
views
Allure reports showing NAN% and blank data when integrated in azure devops pipeline
I am new to Cypress automation and I am trying to create an azure devops pipeline for calling UI based tests in cypress.
The pipeline is giving success status but the report shows NAN% along with no ...
-2
votes
1
answer
128
views
Serve Allure not working in Python even after gnerating reports
I have generated allure reports but when i give a command to serve allure reports, it says batch file or command not recognized. I have added environment path variable and every other plugins have ...
1
vote
1
answer
949
views
Allure custom labels won’t show up in the final report (pytest, allure)
python 3.12.2
allure-pytest: 2.13.5
allure-python-commons: 2.13.5
pytest: 8.2.2
allure CLI: 2.30.0
Premise
Allure documentation says that I can add labels.
import allure from allure_commons.types
...
1
vote
2
answers
946
views
Cypress Allure Report Created but allure-results Folder Not Generated
I'm trying to integrate Allure reports with Cypress in my project. The Allure report is being created, but the allure-results folder is not being generated. Below are the steps I've taken and the ...
1
vote
0
answers
183
views
How to automatically generate an Allure report after executing all feature files instead of typing in terminal as specific script?
I'm using Python Selenium Behave and Allure reports on my automation testing, my problem is how can I generate the Allure report automatically without typing a specific script on the terminal after ...
1
vote
1
answer
357
views
How to separate retires in Allure Reports to separate tests?
In my project while triggering a test to run, we pass through variables as system properties e.g.:
public static String USER = System.getProperty("user", "ADMIN_HQ");
This is so ...
1
vote
1
answer
890
views
What could be the reason that no steps are displayed in Allure report with AspectJ weaving?
I'm currently working on an automation framework and the feature I am implementing right now is the possibility to log the messages on start and the end of the methods annotated with @Step from allure....
0
votes
2
answers
786
views
allure reports not running, although allure is installed - allure command not found
I am using Nightwatch JS, have Allure installed, and have been using reports successfully. However, something has changed, and now I get the following error:
$ allure generate ./allure-results --clean ...
0
votes
1
answer
329
views
Mocha-Selenium-JavaScript: TypeError: Cannot read properties of undefined (reading 'reporter')
While integrating Allure reports with Mocha, i am trying to incorporate a takescreenshot function in selenium and to add that screenshot in my Allure reports. Its giving me an error of TypeError: ...
1
vote
1
answer
836
views
Generate Allure reports in GitHub Actions for 2 separate test runs
I have tests on RobotFramework, that run in GitHub Actions. Currently there is one workflow, that runs tests and generates Allure reports for them. And then report is deployed in GitHub Pages.
It ...
0
votes
1
answer
508
views
Allure Reports "Cannot find module 'allure-cypress/commands' " for Cypress BDD Framwork using Cucumber
I am working on Cypress BBD Framework using cucumber:
The following are dependencies installed:
"devDependencies": {
"cypress": "^13.11.0",
"cypress-...
1
vote
1
answer
146
views
Keyerror in Allure Behave
Im currently trying to run an automation script using behave and generate reports using allure behave python.
The code is working file if the allure reporting is not used.
Exception KeyError:
...
0
votes
1
answer
390
views
Generate allure-reports for Cypress under target folder
I am trying to generate "allure-reports" under a target folder called "cypress" in my cypress automation framework
I have configured the following version of allure-reports, the ...
1
vote
1
answer
453
views
Failure to generate "allure-report" when running "allure generate --single-file allure-results"
I added the latest version for allure-testng (2.27) with the following dependency to my pom.xml file. I also have the same version installed on my local to be able to use the terminal.
<dependency&...
0
votes
1
answer
1k
views
Integrating Allure Reporting into Playwright Tests Azure Pipeline
I am practicing with Playwright automation and learning to integrate it with CI/CD pipelines in Azure.
I have managed to create a Repo and Pipeline in Azure that runs my Playwright code, but I am a ...
1
vote
2
answers
3k
views
Runnig allure serve to generate reports gives Error: spawn EINVAL
>allure serve
node:internal/child_process:421
throw new ErrnoException(err, 'spawn');
^
Error: spawn EINVAL
at ChildProcess.spawn (node:internal/child_process:421:11)
at Object....
1
vote
0
answers
791
views
Customize Allure Report using --single-file Option
Currently I have an automation framework that is running in WDIO using the --single-file option because I need to be able send the report out.
Here's my command line that is generating the report
...
1
vote
1
answer
1k
views
Allure not displaying results
I'm on a Windows machine and trying to populate the dashboard locally. I've installed it using Scoop as recommended by Allure. Some of my system specs:
Windows 11 Enterprise
Edge Browser
Java(TM) SE ...
1
vote
3
answers
706
views
com.fasterxml.jackson.databind.exc.UnrecognizedPropertyException: Unrecognized field "testCaseName" (class io.qameta.allure.model.TestResult)
We recently upgraded Allure (2.27.0) and Allure Jenkins plugin (2.31.1) to the latest versions. Now the Allure report is empty and the log file contains:
com.fasterxml.jackson.databind.exc....
2
votes
1
answer
635
views
Allure report stuck with a loading spinner after launching index.html from generated report
I've used the below code to generate the allure report, but after generation when I launch the index.html file it keeps on loading. But when I use serve command and launch it, the proper report gets ...
0
votes
1
answer
673
views
allure-behave : The term 'allure-behave' is not recognized as the name of a cmdlet, function, script file, or operable program
I created new (virt_env) and installed allure-behave by using command: pip install allure-behave.
To verify it installed I use pip list command:
When I run my automation tests I see allure-results ...
1
vote
1
answer
308
views
How can i select a specific test session in Allure history?
I would like to know how can I select a specific test session result in Allure report version 2.27.0.
Let me give your more detail on my workflow.
i execute pytest mytest.py --alluredir=allure-...
0
votes
1
answer
255
views
js net::ERR_ABORTED 404 (Not Found)
I use Allure report in Azure DevOps, and hosted this report in Azure Storage Account. I want share this report in my confluence page. For implement this i use macro "HTML include". But when ...
0
votes
1
answer
1k
views
How can I merge two different Allure results beloging to two different stages in a Jenkins Declarative Pipeline
I have a Jenkins Declarative Pipeline with 2 different test stages both are configured to generate allure-results
I would like to merge these two allure-reports into a single allure-report and present ...