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

ALM create new Test Run using JSON payload ( REST API)

{ "entities": [ { "Type": "run", "Fields": [ { "values": [ { "value": "Run_10_07_2019_11_13_53_12345" } ], "Name": "name" }, { …
novice
  • 43
  • 11
1
vote
1 answer

Error in Syncing ALM QC (12.00) with Visual Studio Team Foundation Server 2015 using ALM Synchronizer (12.60)

I have used ALM Synchronizer to connect to TFS (2015). I have established the initial connection and am trying to obtain the TFS schema. After starting the "Run integrity check" operation I am receiving the following error: Fetching endpoint…
1
vote
0 answers

Can't upload more than one test case into HP ALM

My problem is that the current code only uploads one Test case and I have no way of adding more than one since the number of test steps are dynamic (see attached image), hence I wouldn't know in which row each test case would end in order to add…
pyrish
  • 65
  • 1
  • 10
1
vote
1 answer

Can we integrate protractor test with ALM (Quality center)

Is there a way to integrate protractor test with HP ALM(Application lifecycle management). Purpose is to save the execution results in Quality center. Is there a plug-in available for this?
Bharath Kumar S
  • 1,410
  • 2
  • 10
  • 29
1
vote
0 answers

HP QC ALM REST API: (Missing required field) Create a new defect POWERSHELL

I'm trying to create a new defect with powershell. I can connect to the api and even get the list of all defects or by id. I'm now trying to create a defect but without success. Indeed, i'm sending a json but i'm only getting a "missing required…
Friedrich Dylan
  • 114
  • 1
  • 11
1
vote
1 answer

I can't openning a session in ALM 12.5x

I'am new in ALM. I just read some guides from REST API and try to repeat this. But I face up to the situation. In my last request I have 401 return (User not authenticated). What am I doing wrong? import requests from requests.auth import…
1
vote
1 answer

Problems with the TDAPIOLELib library

I am trying to build a C# program with Visual Studio to use the ALM OTA API. I keep on having problems with the TDAPIOLELib library though, and I can't seem to find the reason why. I get the following error: 'dotnet.exe' (CoreCLR: clrhost): Loaded…
PAD333
  • 41
  • 4
1
vote
1 answer

Working around HP ALM Rest api

There has been many link and question around this problem but I still have my doubts. In my project i am using Robot Framework with selenium for automation, things are smooth till here. Now the next step is to consume the HP ALM Rest API and…
1
vote
1 answer

Replacing portion of a URL in HPE UFT / VBscript

So I am trying to get a script to work that will obtain the current URL of the open tab, replace a portion of the URL, and enter in/navigate to the new URL which has the replaced text. I'm struggling with the replace function as well as how to…
1
vote
1 answer

HP QC ALM REST API - Defect creation issue

I am trying to create a new defect. I have to do it using REST API in my C# ASP.Net project. Below is the used URL: qcbin/rest/domains/TESTDOMAIN/projects/TESTPROJECT/defects Below is my request body :
Karthick Raju
  • 757
  • 8
  • 29
1
vote
3 answers

How to upload IMAGE as run attachment in QC with HP ALM REST API

I have searched for days and trying to solve the problem by myself, unsuccessfully. I found that is possible to attach files to QC Run (using Python or Ruby) with something like this (send it in a Rest Request): Content example: headers = {'accept':…
koxta
  • 846
  • 2
  • 8
  • 30
1
vote
1 answer

Update HP QC Defect comment using API

Can anyone help me as my HP QC Update comment API is returning http_code: 401 which is "user not authenticated". But I am sending the request after login only. The flow is as below: I hit qcbin/api/authentication/sign-in API which stores…
Biswajit
  • 81
  • 1
  • 2
1
vote
2 answers

Sending cookie and session id to HP ALM API

Is there anyone worked on HP ALM APIs with PHP? I am getting the cookies from qcbin/api/authentication/sign-in API But when I am trying to send these cookies to other subsequent APIs, its returning me httpcode 401 which is not authenticated. Also i…
Biswajit
  • 81
  • 1
  • 2
1
vote
1 answer

Bulk update run steps in HP ALM using ALM API

My intention is to do bulk update of a test run steps. I have created test set folder -> test set instance-> test run. I can update a test run by posting json with url …
Macintosh_89
  • 664
  • 8
  • 24
1
vote
1 answer

Extract data from HP QC to excel using API

I need to extract data from HP QC from backend using PHP or javascript. The data needs to be put on database or excel sheet. Is there any API to do that?