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
- Reopening the application freshly through appium java script for Next Testcase
- Some of my tests show prepended with junit.framework
- Test Selector Plugin Jenkins returns No tests were executed
- Inject EntityManager in SwitchYard Junit implementation
- Java JUnit4: Make simple assertEquals Test pass
- Don't let test stop on failure
- How to test Reply<?> in sitebricks
- Arquillian Embedded Derby database columnDefinition="text"
- How do I write unit test (JUnit) to check Database connection using DAO class?
- Get full path of a package situated in source folder from junit
- How to write a JUnit unit test for database call?
- Unit tests fail to run after upgrade from grails 2.3 to 2.5
- Issues with a UDF
- Unit testing with Liferay 6.2
- What does the "Test Artifact" selector do in Android STudio
Related Questions in REPORT
- Update SSRS security for reports
- parameter passing while generating report in ASP.NET
- Don't produce report if there is no data - PDF
- mysql -how can we store Testng results to database
- How can I hide a standard report from the print button pull down menu list on Odoo 8?
- SSRS 2012 - Hide Duplicate Rows
- INST-07407: Unable to detect machine platform or JVM bits while installing oracle forms and reports
- Writing doc output to pdf
- SQL Datename within a function
- Write a docx and password protect it
- Export Moodle report in csv file
- Using SQL Can I get incremental changes in data from query results? Loops?
- Conditional Formatting via VBA MS Access Report not working
- Insert a plot inside a paragraph
- STM32 USB HID reports
Related Questions in REGRESSION-TESTING
- Easy to use multi browser automation tool for record, parameterize, debug, batch run of suites and results report
- CSS Visual Regession Testing with BackdropJS - could not run grunt:reference or grunt:test
- Serenity BDD reports naming
- How can I know that TestNG framework is suitable to perform test case prioritization in regression testing?
- Create online regression tests for code snippets on CodePen
- how to store regression testing results?
- Python something resets my random seed
- Should you test the same software build if only the data has changed?
- Implementing `make check` or `make test`
- How does testing a connection to a third-party API fit into continuous integration?
- Any suggestions about how jmeter can be used to do regression testing for page load times
- How to convert testingSuit xml file to a java class
- pytest: Parametrizing from function output / from directory structure
- How to detect when all tests within a QUnit module is completed?
- Automatic Runtime Performance Regression Test in Java
Related Questions in SERENITY-BDD
- Facing issues while running cucumber with serenity
- Less bulky serenity-bdd console output
- How do I mark tests as Passed/Skipped/Ignored in serenity?
- in mac, new tab functionality is not working
- serenity xml file is not created when executed with gradle
- Serenity BDD reports naming
- How to make variable WebDriver's path depending on OS with Serenity BDD?
- How to rename Serenity BDD Reports
- Selenium open multiple Internet Explorer browser
- Serenity + Rest services
- Custom annotation creation initialization issue with Serenity Framework
- Generate Serenity aggregate report when tests are executed with cucumber-jvm-parallel-plugin
- Opening two different browser for same test case in Selenium
- Serenity/Selenium browser closes immediately
- How can I change serenity-bdd log settings in maven
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 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).