I am using the Serenity BDD tool Version 1.2.1-rc.6 with JUnit 4.12 to automate some regression testing. The project is working fine so far but I want to be able to rename the generated reports.
At the moment they are called something like this:
62e91fe28f676d9f760e63756d4ba1d2.html
I want them to be named after the testcase creating them.
I have not seen anything about this in the Serenity Reference Manual nor elsewhere I could think of.
Any help would be appreciated.
Serenity BDD reports naming
1.5k Views Asked by B.Wagner At
1
There are 1 best solutions below
Related Questions in JUNIT
- Embedded Kafka Failed to Start After Spring Starter Parent Version 3.1.10
- Springframework test: Async not started
- Problems running both JUnit tests and Selenium/Cucumber tests at the same time
- Writing test methods with shared expensive set-up
- Mocking Stream or Reader in Java Junit
- Junit test: NoSuchElementException, Mock getConnection
- Get program traces with JaCoCo
- Junit test with Mockito: Error ExceptionInInitializerError
- How to Mock HttpResponse
- How to mock dependency in service class from Junit
- classNotPreparedForTest exception, using JUNIT5, MOCKITO and POWERMOCKITO
- Ant Junit ForkMode with Suites
- I import JUnit to Eclipse and still does not work
- Mock DriverManager.getconnection method for junit/mockito unit tests
- throwing a StaleElementReferenceException during dictionary iteration in a for loop
Related Questions in REPORT
- how to make certain editable field as non editable in alv report for custom field
- Report: Cased Actively Open during any given Month
- do you know any free reporting services like devexpress or boldreports?
- Cognos 11 Query join problems
- Allure report stuck with a loading spinner after launching index.html from generated report
- I need information about reports
- Azure PublishCodeCoverageResults@2 issue with detailed report for coverage
- how to create in webi a text input control based on partial text or number for filtering a BO Report
- unable to upload Paginated report
- 401 Unauthorized https://api.powerbi.com/v1.0/myorg/GenerateToken
- apexchart javascript grouped stacked bars sometimes not working
- Column Reorder in PBI - I Want to rearrange/sort the order of my data within the columns in my report
- How to update custom reports in Dynamics 365 Field services
- Email based on no entries
- IIS worker process memory keeps increasing with each new devexpress report beeing served
Related Questions in REGRESSION-TESTING
- How does linux kernel do regression test?
- Difference between functional and regression test cases
- Regression test in a ISTQB test exam
- When configuring a test using Artillery, how can we pause between scenarios versus flows?
- ERROR: function add(integer, integer) does not exist No function matches the given name and argument types. You might need to add explicit type casts
- How to get Code coverage for integration tests and Regression tests
- How to use DeepDiff with custom_operators and iterable_compare_func altogether?
- R code to test the difference between coefficients of regressors from a multinomial logit regression
- Difference between 1e12 and 1000000000000 in SystemVerilog
- Karate : Matching data between nested array
- data-cy exists in DOM tree but not visible
- Get the stacktrace of all the classes executed
- Does refactoring inline variables require a regression test if it's the only change to a function?
- Can't run BackstopJS interactive reporting
- How to construct a security regression Test?
Related Questions in SERENITY-BDD
- Could not instantiate class org.openqa.selenium.edge.EdgeDriver in Serenity
- How to run Automation api testing with serenity-cucumber bdd using jar file
- Serenity Full Report shows bad ui
- Issue accessing env specific parameters from serenity.conf from a static context
- Serenity Bdd 4.1.0 : No BaseStepListener has been registered
- ElementNotInteractableException: element not interactable (When uploading the file by using the CloudFIleOperationUtil )
- Serenity BDD framework test case fails after Chrome Version update 121 ,Could not instantiate new WebDriver
- Surefire plugin crashed
- How to use both CfT (Chrome for Testing) and chromedriver lacal binaries with Serenity BDD configuration
- How to run serenity with cucumber without maven or gradle
- appium test on saucelabs using serenity framework
- Selenium methods which can be used to upload picture/file when sendkeys and javascript executor are not working
- Serenity Report is not generated Build Failed after successfully running test scenarios in Maven project
- Getting [ERROR] zip END header not found in Serenity BDD Maven project in IntelliJ IDE CE
- Compatibility serenity-jira-plugin with Jira
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
You can set the
serenity.compress.filenamesproperty in theserenity.propertiesorserenity.conffile to false. This will create a filename based on the test case path, test case name and test name. Note that if your test names/paths are very long it may cause issues with (some versions of?) Windows (that doesn't support file paths longer than 260 chars).