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
0 answers

How to get the Test Configuration name in UFT?

Recently we upgraded our test management tool from HP QC to HP ALM which supports a new feature called "Test Configuration". Earlier we used to have multiple tests developed in UFT but now we are using one test with multiple configuration. In script…
1
vote
1 answer

Can I import java libraries in HP ALM without Microsoft Java Virtual Machine?

I'm investigating ways of integrating different test tools with HP ALM. I would love to be able to execute java functionality as a part of this. In the test-script pane of a VAPI-XP test, there is a button just below the File menu option. It…
jumps4fun
  • 3,994
  • 10
  • 50
  • 96
1
vote
0 answers

Not able to open text file via File System Object in VAPI test case in QC

I am trying to read a config file in my VAPI test case in QC. Following is the code snippet: Set objFSO =CreateObject("Scripting.FileSystemObject") Set objFile=objFSO.OpenTextFile(strFileName,1) strText = objFile.ReadAll objFile.Close However I am…
1
vote
1 answer

Execute a query from Quality Center using CommandText, and Recordset with Python

I am trying to use this peace of code but in Python, but I get error that the recordset doesn't have attributes. I already have the connection, and all the other functions from OTA, but I can't get recordset to work. import win32com.client, os tdc…
1
vote
1 answer

Selecting a substring of a column created with a recursive query

I have a recursive CTE query that constructs a file path from from a folder structure within an application called HP Quality Center - what I'm trying to do is simply de-construct the string to a certain folder length based upon a symbol '\'. Could…
cstones88
  • 13
  • 1
  • 8
1
vote
1 answer

How to get the customise project list (Lookup) in HP Quality Center using OTA

I'm trying to use the OTA API to get the attributes for my test objects. Some of these entries have the type "Lookup". The lists are available in the Customize -> Project List. I tried my luck with CustomizationList, but somehow I'm stuck its…
Vinh
  • 944
  • 13
  • 34
1
vote
4 answers

Visual Studio project remains "stuck" when stopped

Currently developing a connector DLL to HP's Quality Center. I'm using their (insert expelative) COM API to connect to the server. An Interop wrapper gets created automatically by VStudio. My solution has 2 projects: the DLL and a tester…
Traveling Tech Guy
  • 27,194
  • 23
  • 111
  • 159
1
vote
2 answers

Getting Attachments from QC

Is there any tool available that can export attachments from QC? I already have a tool for exporting test cases from QC to Excel, but that doesn't solve the attachement issue.
Sid
  • 1,224
  • 3
  • 23
  • 48
1
vote
1 answer

How to save results of a QTP script present on desktop to some test set path in QC?

Is there any way that i can Upload the test result In QC from desktop? I am using following code: Set qtApp= CreateObject("Quicktest.Application") qtApp.Open "C:\Test" Set rep= CreateObject("QuickTest.RunResultsOptions") rep.ResultsLocation =…
Jaskaran
  • 320
  • 5
  • 19
1
vote
3 answers

QTP, QC, Load Runner and RFT tutorials

I am newbie in testing. Can you please suggest me some good tutorials of Quality Center Quick Test Professional RFT Thanx in advance
Ankit Sachan
  • 7,690
  • 16
  • 63
  • 98
1
vote
3 answers

Getting “Unspecified Error” while running Scripts from ALM 11.5

I've made a connection to ALM with UFT 11.5 and when I run my scripts from UFT 11.5 its working perfectly fine, but I face issue when the same scripts are being run from ALM Test Lab. I am not sure whats happening. I am getting Unspecified Error, I…
Paras
  • 3,197
  • 2
  • 20
  • 30
1
vote
1 answer

Getting Cycle names from Releases in HP ALM?

I have successfully retrived all the fields from Testsets and Defects sections by creating object in the following way. (By using C#) TDConnection qcc = qccTDConnection; BugFactory bfact = (BugFactory)qcc.BugFactory; List bugs =…
Rajini
  • 11
  • 5
1
vote
2 answers

How to find the Field names in Defects in HP ALM?

I'm retrieving fields from HP ALM. But here I trouble to get the field names. BugFactory bf = (BugFactory)qcc.BugFactory; List bugs = (List)bf.NewList(bf.Filter.Text); string b5 = Convert.ToString(bg["BG_PROJECT"]); string b6 =…
Flying Hope
  • 117
  • 1
  • 10
1
vote
1 answer

Add test object in Test set in QC through OTAClient in JAVA

I have a list of test ids which are to be added in a newly created test set. For getting test details [or test objects] i am using the following code: ITestFactory sTestFactory =…
Vinay Gupta
  • 213
  • 3
  • 16
1
vote
1 answer

How to read the user email address in HP QC Script Editor?

Inside the HP Quality Center Scripting Editor, I can access current user info (like user name or full name) with the "user" object. How do I access the current user E-Mail address property?
Federico Elles
  • 891
  • 3
  • 14
  • 24