Do you have Test Case download utility from ALM to Excel. I need it as business wants the test cases.
Question ID: 106459
0
0

I need a way to download test cases from ALM to Excel including the Folder Names as many test cases will have the same name except for where they are located.

Marked as spam
Posted by (Questions: 204, Answers: 2)
Asked on October 23, 2015 7:17 pm
3222 views
Answers (2)
0
Private answer

Please do the following:
Here are the steps to create an Excel Report of Test Cases with Steps:
1. Click on Dashboard->Analysis View
2. Click on + and New Excel Report
3. Enter Report Name
4. If entered as Test with Design Steps
5. Click on Query Builder and using fields in Test & Design Step create Query
6. Click OK.
7. Click Generation Settings
8. Change Status to Ready
9. Click Generate.
10. Enter a name to save report
11. Click Save
12. See Resulting report.
You should then be able to modify the report as you see fit.

Here is the resulting SQL query:
SELECT
TEST.TS_TEST_ID as ''Test ID'', /*Test.Test ID */
TEST.TS_TEST_NAME as ''Test Name'', /*Test.Test Name */
TEST.TS_DESCRIPTION as ''Test Desc.'', /*Test.Test Description */
DESSTEPS.DS_STEP_NAME as ''Step Name'', /*Design Step.Step Name */
DESSTEPS.DS_DESCRIPTION as ''Step Desc.'', /*Design Step.Step Description */
DESSTEPS.DS_EXPECTED as ''Expected Result'', /*Design Step.Expected Result*/
TEST.TS_STATUS as ''Test Status'', /*Test.Status */
TEST.TS_TYPE as ''Test Type'', /*Test.Type */
TEST.TS_RESPONSIBLE as ''Test Designer'', /*Test.Designer */
TEST.TS_USER_03 as ''Test Priority'', /*Test.Priority */
TEST.TS_USER_02 as ''Test Reviewer'', /*Test.Reviewer */
TEST.TS_PATH as ''Test Path'', /*Test Path */
TEST.TS_USER_04 as ''Test Level'', /*Test.Level */
ALL_LISTS.AL_DESCRIPTION as ''Test Plan Folder Name'' /*Test Plan Folder.Name*/
FROM
Test,
DESSTEPS,
ALL_LISTS
WHERE
DS_TEST_ID = TS_TEST_ID AND
AL_ITEM_ID = TS_SUBJECT

Marked as spam
Posted by (Questions: 1, Answers: 216)
Answered on October 23, 2015 7:21 pm
0
Private answer

@David Hall
How can we extract the test cases from sub folders?

For example
Folder 1 / folder 2 / folder 3
Considering folder 2 and 3 has multiple folders inside it.

I want to extract the data by mapping folder 1 which will eventually give me all test cases which are under folder 2 and 3.

Marked as spam
Posted by (Questions: 0, Answers: 2)
Answered on September 13, 2017 9:11 pm
0
Hello, We are looking for similar report, from the above query we are able to download the test cases along with design steps but cant really make out under which folder these are created, can you please help to pull a report with folder structure details as well please
( at June 16, 2022 10:18 am)
EyeOnTesting

Welcome back to "EyeOnTesting" brought to you by Orasi Software, Inc.

X
Scroll to Top