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
0
votes
1 answer

How to write a CTE Recursive Query in VBA script?

I have a VBA script written to query HP ALM database using OTA API. I want to query the database using a Recursive CTE. I don't know how to write that script within this VBA script. VBA Script::: Sub Extractor() Const QCADDRESS =…
Lokesh Sah
  • 2,283
  • 5
  • 23
  • 33
0
votes
1 answer

How to send multiple queries in order to sort large data

How to send multiple queries in order to sort large data for example http://IP:PORT/qcbin/rest/domains/MYDOMAIN/projects/MYPROJECT/tests?query={owner['MYNAME']} gives 1000 results but in to sort one or two fields to filter results owner['MYNAME']…
0
votes
1 answer

QC OTA : How to add an Test Iteration in Test Lab->Test Set->Test case->Test Instance Details->Execution Settings using QC OTA

I am able to read the Test set and the tests in the set using OTA, but not able to get the object of Test Iteration in Test Lab.enter image description here
ajit
  • 11
  • 4
0
votes
1 answer

Set test parameter in test instance using HP QC REST API

Is there any way to create test instance with parameter using the REST API on QC 11 ? I have a test in my test plan with some parameters, or just one for the exercise : I want to create using the rest API : A test set in my test lab A test…
wishper
  • 615
  • 6
  • 18
0
votes
1 answer

Add custom states for test runs in Quality Center

How do I add my own states in test runs? The default states are: Passed, Failed, Blocked, N/A, Not Completed, No Run I want to add e g "Passed with Failures".
Paul
  • 163
  • 1
  • 11
0
votes
1 answer

propagating a field change on children

I have a tree composed by two main elements: folder (containers) and requirements. A folder can contain both a folder or a requirement while a requirement must be a leaf. Moreover both folder and requirements has a field with the same name. Now I'm…
Chris Cris
  • 215
  • 3
  • 13
0
votes
0 answers

Java: Connecting to Quality Center using qcutils4j.jar

I have developed a runner module for my automation framework which will allow testers author and execute the tests using Eclipse IDE. Now I am looking to add a module to connect to QC and upload my tests to the respective test plan. For this I am…
Waman
  • 1,179
  • 7
  • 16
0
votes
1 answer

HP QC 12 and MS Access Query

I'm currently trying to figure out a way to connect to HP QC 12 via MS Access and import the data found in table bug via a simple query. However, I'm having a hard time getting the HP QC data into a usable query. I've tried two ways so far: Public…
user1706975
  • 325
  • 2
  • 5
  • 11
0
votes
1 answer

How to get new line in Run Results Viewer Version 11

We recently upgraded to ALM 11 at work and I am trying to add some formatting to the run details field in the HP Run Results Viewer application. We have existing code from older versions of ALM that displays the info on multiple lines: pass = fail…
Ryan
  • 80
  • 10
0
votes
1 answer

Jenkins Integration with QTP in Virtual Machine

I'm trying to run a job from my Jenkins master to a Virtual Machine with a jenkins slave on it. What I want is to run tests that are on Quality Center in my Virtual Machine, but when I try to run the jenkins slave this error is happening. Has…
Kamila Brito
  • 198
  • 8
0
votes
1 answer

Not able to connect HP ALM through QTP connection

Not able to connect HP ALM through QTP connection screen shot attached
sakshi
  • 283
  • 3
  • 15
0
votes
0 answers

HP Quality Center retrieve data from DB

I'm running a few vb scripts on my QC server using the script editor. I'm using QC 12, i have a function that is establishing a connection using QC api, getting some data then incrementing this data by one, the thing is that it's getting an empty…
Alex Brodov
  • 3,365
  • 18
  • 43
  • 66
0
votes
1 answer

HPQC ALM12 - Results not being filtered on excel sheet on new version of quality center

I have an excel sheet that was working flawlessly with hp quality center 11. When I was moved to HP QC12 , it stopped bringing the results from the filters (tree or grid) and instead it brings to my excel sheet all the requirements list for all…
0
votes
1 answer

Defect ID corresponding to a TestID in HP Quality Center?

I wrote a little tool in VB Script last year to retrieve the TestID with the following code. Dim TSTestFact = tsObject.TSTestFactory Dim TestSetTestsList = TSTestFact.NewList("") For Each tsInstance In TestSetTestsList Dim tid As String…
Chhabilal
  • 1,076
  • 11
  • 22
0
votes
1 answer

How to extract Defects with linked TCs using QC OTA

I am successfully able to download the defects using the below code, but how to get the count of linked TCs with status 'Failed or Blocked' against each defect? Sub GetDefectsByFilter() On Error Resume Next Dim a Dim intIndex As Integer Dim…
jjrc
  • 69
  • 2
  • 3
  • 9