Micro Focus QTP (UFT) Forums
How to know the server URL of QC if it is installed on PC - Printable Version

+- Micro Focus QTP (UFT) Forums (https://www.learnqtp.com/forums)
+-- Forum: Micro Focus UFT (earlier known as QTP) (https://www.learnqtp.com/forums/Forum-Micro-Focus-UFT-earlier-known-as-QTP)
+--- Forum: UFT / QTP Others (https://www.learnqtp.com/forums/Forum-UFT-QTP-Others)
+--- Thread: How to know the server URL of QC if it is installed on PC (/Thread-How-to-know-the-server-URL-of-QC-if-it-is-installed-on-PC)



How to know the server URL of QC if it is installed on PC - vibhakhandelwal - 08-23-2011

Hi,

I have installed QC9.0 on my system. With that I also have QTP 9.2 running. Now I have to integrate QTP with QC. my queries are
1. Can QC version 9.0 be configured with QTP version 9.2.
2. How will i know the server URL of QC ... which is required in the integration steps.


RE: How to know the server URL of QC if it is installed on PC - Saket - 08-31-2011

see if this post helps - https://www.learnqtp.com/qtp-quality-center-test-director-guide/


RE: How to know the server URL of QC if it is installed on PC - ashita - 09-01-2011

Hello,
I am quite new to QTP. I tried to record and run the very basic flight reservation application test and i got the following error when i tried to apply standard checkpoint and run it.

Cannot find the "Agent Name:" object's parent "Login" (class Dialog). Verify that parent properties match an object currently displayed in your application.

I write the following script to apply standard checkpoint.

Code:
SystemUtil.Run("C:\Program Files x(86)\Mercury Interactive\Quick Test Professional\bin\QTPro.exe")
dialog("Login").WinEdit("AgentName").Set("Guru")
Dialog("Login").WinEdit("Agent Name:").CheckPoint("Agent Name:_2")  ( here i created checkpoint)
dialog("Login").WinEdit("Password").Set("merecury")
dialog("Login").WinButton("OK").Click

Please correct me where I am doing wrong..

Thanks
Ashita


RE: How to know the server URL of QC if it is installed on PC - SQT - 09-01-2011

If QC is installed in the same system on which QTP is ,then use below URL for QC :
http://localhost:8080/qcbin/start_a.htm
And If it is installed in some other machine the in the place of local host ,use the machine ip as below example:
http://10.98.12.180:8080/qcbin/start_a.htm


RE: How to know the server URL of QC if it is installed on PC - vibhakhandelwal - 09-05-2011

Thanks SQT... it worked with localhost URL .... Smile