Managing Test Case sections and use import utility
Hi,
I want to create my own test case sections and import the data from excel using import utility. I just want to know how we can define the parameters in config file ? for e.g.
testcase.Section("myns:com.ibm.rqm.planning.editor.section.testCasePostCondition","RQM-KEY-TC-POST-COND-TITLE")=D
Here for post-condition of test case section we pass "RQM-KEY-TC-POST-COND-TITLE".. for our own sections that we create what will be value of this? for e.g I create "Summary of Test" what will I define for import?
please suggest :)
I want to create my own test case sections and import the data from excel using import utility. I just want to know how we can define the parameters in config file ? for e.g.
testcase.Section("myns:com.ibm.rqm.planning.editor.section.testCasePostCondition","RQM-KEY-TC-POST-COND-TITLE")=D
Here for post-condition of test case section we pass "RQM-KEY-TC-POST-COND-TITLE".. for our own sections that we create what will be value of this? for e.g I create "Summary of Test" what will I define for import?
please suggest :)
2 answers
Hi,
I want to create my own test case sections and import the data from excel using import utility. I just want to know how we can define the parameters in config file ? for e.g.
testcase.Section("myns:com.ibm.rqm.planning.editor.section.testCasePostCondition","RQM-KEY-TC-POST-COND-TITLE")=D
Here for post-condition of test case section we pass "RQM-KEY-TC-POST-COND-TITLE".. for our own sections that we create what will be value of this? for e.g I create "Summary of Test" what will I define for import?
please suggest :)
If you do a GET request with the RQM API (https://jazz.net/wiki/bin/view/Main/RqmApi) on a resource that has data in your new section if will get returned in the xml. You can look at that xml to determine the section id.
Hi @chandrahasa,
if you specify
then a new section with the id "mysection" and name "my new section name" will be created
if your section is already created in RQM UI you can do as
@rrassman suggested.
if you specify
"testcase.Section("myns:mysection","my new section name")=D
then a new section with the id "mysection" and name "my new section name" will be created
if your section is already created in RQM UI you can do as
@rrassman suggested.
Hi,
I want to create my own test case sections and import the data from excel using import utility. I just want to know how we can define the parameters in config file ? for e.g.
testcase.Section("myns:com.ibm.rqm.planning.editor.section.testCasePostCondition","RQM-KEY-TC-POST-COND-TITLE")=D
Here for post-condition of test case section we pass "RQM-KEY-TC-POST-COND-TITLE".. for our own sections that we create what will be value of this? for e.g I create "Summary of Test" what will I define for import?
please suggest :)