How can I have a daily report that shows all the tests executed and the remaining ones to be executed over a 5-day period, or by selecting a date range from date X to date Y?
How are the tests stored? Are they stored in Jira as issues/tickets? Or do you use a specific plugin for testing?
Danut.
Hey Danut,
Actually they are stored as tikcts , because when I write a test I write it as a ticket .
But I do manage them in Xray plugin . Which ones are failed , passed , to do .
Thanks
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You could create a JQL like this:
duedate >= startOfDay("-4d") AND duedate <= endOfDay() AND issuetype = "test" ORDER BY created DESC
You can replace 'duedate' with 'execution date'
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hey Rudy,
I don't have those fields on my test case screen. I think I should add them and fill them automatically, so I can use them in the reporting.
In the test execution, we already have the 'Start At' field (which indicates when the test begins), but how can I add and populate the 'Execution Date' field?
Thanks.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You can
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hey Lukasz,
I think that's going to help, actually. But the problem I’m facing is that I’m using the Xray plugin, which makes it impossible to retrieve the execution status of a test — whether it’s been executed, or if it has failed. So, I can’t filter this information.
Do you have any idea ?
Thank you
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
looks like there are some possibilities: https://docs.getxray.app/display/XRAYCLOUD/Document+Generator+Template%3A+Test+Execution
But again you would need to check what exactly do you need (based on your data and set up) and ask Xray team for some support in helping you achieve it.
Btw. Xray have their own academy, my whole QA team had to go through this as part of onboarding :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.