qc

QC的安装和配置

匿名 (未验证) 提交于 2019-12-02 23:57:01
QC(Quality center)的安装配置 Wmware 虚拟机 数据库SQL server2000 Windows server 2003 须安装数据库的sp4补丁包 注意事项 数据库安装时选择数据和windows双重验证模式 数据库安装完成后,默认是关闭服务的,须手动启动 如果电脑中的IE浏览器版本过高,QC将不支持,可以下载QC自带的IE浏览器 1)先在虚拟机Windows server2003操作系统中安装SQL server2000 2)安装QC 来源:博客园 作者: 那个谁呢 链接:https://www.cnblogs.com/jingdenghuakai/p/11454029.html

QTP/UFT - Close all browsers except QC/ALM

点点圈 提交于 2019-12-02 07:05:58
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 closes the test case browser and when it executes the iteration for the ALM browser, it says the browser is not identified when it tries to find the name of the browser. I am not sure why it counts it as a browser if it cant identify it later. Any thoughts on how to resolve this? Dim oBrDes Dim oBrObjList Dim objIndex Set oBrDes=Description.Create

HP Quality Center field names

非 Y 不嫁゛ 提交于 2019-11-29 17:23:50
I am interacting with HP QC using python and referring to HP ALM OTA documentation. What I need is to access fields in different places (particularly now I am trying to access Test Set description field). As far as I know it is done by following: TestSet['description field name'] = 'I am description' The problem is - I don't know this field name and I can't find it in documentation mentioned. Up until now I was wondering around examples in hope to find these names (the way I found that Actual field in test step is named 'ST_ACTUAL'). Could you please help me find some kind of list of these

HP ALM REST API login using PHP CURL

久未见 提交于 2019-11-29 04:59:11
I'm new to REST and I'm trying to develop a web app that will connect with JIRA from one sid (already covered) and with HP's ALM from the other side. what I'm attempting to accomplish right now is basic authentication to ALM with PHP but can't seem to progress. here is my code: $handle=curl_init('http://192.168.1.7:8081'); $headers = array( 'Accept: application/xml', 'Content-Type: application/xml', 'Authorization: Basic YWRtaW46MTIzNA==', ); $username='admin'; $password='1234'; $url = 'http://192.168.1.7:8081/qcbin/authentication-point/login.jsp'; curl_setopt_array( $handle, array( CURLOPT

HP ALM REST API login using PHP CURL

廉价感情. 提交于 2019-11-27 18:51:41
问题 I'm new to REST and I'm trying to develop a web app that will connect with JIRA from one sid (already covered) and with HP's ALM from the other side. what I'm attempting to accomplish right now is basic authentication to ALM with PHP but can't seem to progress. here is my code: $handle=curl_init('http://192.168.1.7:8081'); $headers = array( 'Accept: application/xml', 'Content-Type: application/xml', 'Authorization: Basic YWRtaW46MTIzNA==', ); $username='admin'; $password='1234'; $url = 'http: