Im a QA lead, We use to assign the ticket to devloper and no field for QA who test it.
My problem is, i have assigned(not assigned in jira) list of ticket to a QA team member in an priority order.
I would like to do this in JIRA (similar to kanban board) where it will have column as name of each team member and i need to list the tickets in an order i want them to take one by one.
Please suggest the best way.
Hi @Bala
There are probably a couple of ways to accomplish this. One is to create a custom field for QA Tester or QA Analyst as a single user picker field. Then you can populate that field at any time.
Then I would create a board using a filter where that custom field is not empty. Then on that board, you can drag the cards into the correct order you want them tested when they are ready.
I created a custom field as QA analyst but i don't see that in Swimlanes. Am i missing anything @John Funk
This is my JQL
project in (IOSVII, COM, ADVII) AND status in ("Ready for QA","QA Started") AND type in (Epic, task) and "QA Analyst[User Picker (single user)]" in (557058:2f797bb3-c8f9-4ef6-85a9-23da3dd584188) ORDER BY Rank
Definitely i want my custom field in Swimlane. Otherwise this kanban board will not be so useful to me.
Please help further.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Issues are showing up in Board but it still looking for status based. If the board will be work based on my new custom field then it will be great. I will just assign QA to the ticket then it will list here accordingly.
.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Columns are always status based and should be. You can do swimlanes to group issues, but those are horizontal lanes and not columns.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I used the swimlane as query and achieved it.
As shown in the figure, created query for each tester and configured 2 column "Ready for QA" and "Qa started". So, i have assigned tickets to each QA.
Thank you so much for the help and guidelines @John Funk @Diogo Teles
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Bala ,
Let me summarise the question so you can tell me if I understood it correctly.
Is this correct? If not, could you help me correct my interpretation?
Thank you!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Brilliant, thanks for confirming @Bala
There are different ways to tackle this. This is how I would approach the situation. I assume your issues exist in a Jira Software project, and you use the Kanban project type.
Here are the steps
Your testers can go to this board and click the "Only my issues" subfilter. This will show them only their issues (you can also force this in the board filter query by adding the currentUser condition, but I would not do that)
Once they click that subfilter button, they will show a board with columns for the subtask workflow (e.g. to do, in progress done) where the top card of the to-do list will always be the next job to do, based on the criteria you defined (priority and due date).
If you want the order of work to be different, all you have to do is adjust priority.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks for the help .
Creating subtask is an additional work to QA. We already dealing too much.
What i was thinking is, Creating a board with column name with "Tester's name" and list it.
The problem is, each column requires unique "Status" but i want to use the status called "Ready for QA" in each column.
Is there way to achieve something like this @Diogo Teles @John Funk
Above approach will help me to handle the QA's who are working on multiple projects.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Bala ,
As you correctly said, columns need to be matched to statuses.
Have you considered using a filter instead of a board? You may achieve a similar or even better result.
Now that you already have a custom field, you can add it to your issues and select for each issue the QA tester.
With that done it is a simple matter of creating a filter to show you work for each tester.
For example, assuming here the custom field is user picker type and called "QA tester", the issuetype is Story, the project key is PRJ, and you have a Group called "QA Testers"
project = PRJ AND issuetype = Story AND "QA Tester" is not EMPTY AND "QA Tester" IN membersOf("QA Testers") ORDER BY "QA Tester", Priority, duedate
Essentially, this query retrieves all the stories in the "PRJ" project where the "QA Tester" field is populated and the assigned tester is a member of the "QA Testers" group. The results are sorted first by the assigned tester, then by priority, and finally by the due date.
This query helps to create a filter that shows the work of each tester involved in testing the stories within the specified project.
Save the filter, select the columns that you want to see, and if you want email updates you can even subscribe to it.
Once again, there are many ways to do this. One of them is not having assignees mapped to board columns though, that is not currently possible in Jira.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.