Questions tagged [hp-quality-center]

HP Quality Center is a web-based system for requirements, test, and defect management.

HP Quality Center (QC) is a set of web-based test management software offerings from the HP Software Division of Hewlett-Packard. HP Quality Center offers software quality assurance, including requirements management, test management and business process testing.

442 questions
1
vote
1 answer

Change parameter values in ALM test plan using OTA

Is there any way to use OTA to manipulate test plans in ALM? For example, I have 350 test plans in ALM and I want to change parameter settings for each of them. It is silly to do it manually. Update 1: After doing research about OTA for many hours,…
nwpulele
  • 211
  • 3
  • 12
1
vote
2 answers

QC query to extract test cases that are linked only to closed defects

I'm trying to extract the list of test instances from test lab that are linked to only closed,rejected and deferred defects. The test instances can be linked to more than one defect. In that case, I have to look through all the linked defects and if…
Karthik S S
  • 11
  • 1
  • 5
1
vote
0 answers

How to add a Folder under specific Test plan folder in QC using Excel Macro

I am trying to add a new folder in QC12 under specific folder (Rot -> 2016_01_janrelease -> functional) using Excel Macro. Can someone provide a piece of code for the same?
ishaan
  • 49
  • 1
  • 8
1
vote
2 answers

How to automate the verify, repair and upgrade activity in ALM QC upgrade

I am currently taking care of ALM QC upgrade activity from 11 to 12.20. During this i need to verify, repair and upgrade each project. Is there any way to automate this? I am open on using UFT or selenium. Let me know if there is any other way to do…
Gauri Gadkari
  • 237
  • 4
  • 12
1
vote
5 answers

Tracking History in HP QC(Quality Center)

Is there a way to tracking a bug's history in QC? What I am trying to get is how many bugs are being reopened over a release and how many times it got reopened. From the QC, I can only see the "status" as "closed" but it won't give me the…
hinling
  • 11
  • 1
  • 1
  • 3
1
vote
2 answers

HP Quality Center

I am investigating a way to automate some of our build processes using Jenkins and HPQC. Currently, we have a process where, once a change to fix a defect has been checked in we set its status to "Fixed" and then reassign defect in HPQC from the…
Terry H
  • 310
  • 4
  • 19
1
vote
1 answer

HP Quality Center 12.20 Excel Uploader - Test Cases not Showing in Test Lab

I have an excel sheet that I use to write test cases and use the HP ALM QC uploader Add-In for excel to import them to into Quality Center. All required fields are mapped (including some additional ones) and all data is validated before uploading. I…
Fueled By Coffee
  • 2,467
  • 7
  • 29
  • 43
1
vote
1 answer

I am trying to get a total count of items in a specifc folder in a database - SQL (HP ALM)

I am trying to get a total count of test cases in each application folder in the Test Plan module in HP ALM 11. This is what I have so far: SELECT Count (TS_TEST_ID) As "App1", Count (TS_TEST_ID) As "App2", Count (TS_TEST_ID) As "App3", Count…
Pockets2Deep
  • 21
  • 1
  • 3
1
vote
1 answer

HP ALM new defect 500

With the following code, i want to create a new defect in hp alm 11.52. import requests import sys import json def login_alm(alm_url, login_list, header): # GET request @ ALM URL r = requests.get(alm_url +…
kgkrae
  • 11
  • 3
1
vote
1 answer

Import test cases from QC

I have the following code for the download of the test cases. It does not download anything, but when I'm already connected, this works. QC stores description in HTML format. So before storing it in to Excel, StripHTML() will remove all HTML tags…
Ari
  • 31
  • 3
1
vote
1 answer

add Test to HP QC From Excel With VBA

i need to import test from excel to hp qc test this is my: Set TestFactory = QCconn.TestFactory Set testObj = TestFactory.AddItem(Null) testObj.Field("TS_USER_14") = "1" 'Arml testObj.Field("TS_USER_01") = "TDB"…
Tzahi
  • 259
  • 3
  • 12
1
vote
1 answer

How to update responsible user field for test case in quality center using C#

I am reading all the test cases present in the current test Set of Test lab . I can able to read it however I am not able to change the responsible user for each test case Is there any way to do it ? foreach (TDAPIOLELib.TestSet tst in…
1
vote
2 answers

HP Quality Center 12 LDAP

We have ALM 12. I'm trying to find the site admin schema/ DB / Table name, unfortunately i couldn't find it after looking at "C:\Program Files\HP\ALM\application\20qcbin.war\WEB-INF", there is a siteadmin xml file, which is saying that the db name…
Alex Brodov
  • 3,365
  • 18
  • 43
  • 66
1
vote
2 answers

QTP/UFT - Close all browsers except QC/ALM

Currently I am using the below code to close all the browsers except the ALM browser from where I run the test suite from. However When I run the suite from ALM, the below code identifies 2 browsers - ALM browser and the test case browser. It first…
1
vote
0 answers

How to Export Test Cases from QC 12?

I am trying to export test cases from our testing tool to QC 12.20. But I couldn't find online documentation over creating new or custom test types in QC 12.20. Our tool worked fine with QC 11. Is there any difference between 11 and 12 over custom…