Votes
Answers
Views
Question
1
1
105
asked 11 years ago by kaptainkayoss
updated 11 years ago by rich-text
I have a vbs file that launches QTP 11. This is the code I have in the file: set qtp=CreateObject("QuickTest.Application") qtp.launch qtp.visible=true When I try executing this on a Win 7 machines. I'm getting the following error when executing the VbScript: Active X component can't create o...
2
1
50
asked 11 years ago by kaptainkayoss
updated 11 years ago by rich-text
Tags:
I'm trying to remove SP3 (UFT 11.53) and can't find it in Add/Remove programs. I'm using Windows 7.
2
1
105
Tried to run a test from QC and we're getting error "Invalid Value for Registry." Does anyone know how to fix this??
2
1
131
Tags:
According to HP document KM177487, "What versions of Terminal Emulators are supported by the QuickTest Professional (QTP) Terminal Emulator(TE) add-in", Hummingbird V13 Terminal Emulator is supported by QTP 11, but we can not get it configured to work. Does anyone know what we need to do to ...
2
1
37
asked 12 years ago by kaptainkayoss
updated 12 years ago by rich-text
How can I stop Chrome from autoupdating? It keeps updating to the latest version, which doesn't work with QTP? I uninstall it, install an older version, and it updates again in the background and is driving me nuts!
1
2
62
asked 12 years ago by kaptainkayoss
updated 12 years ago by kaptainkayoss
I am trying to make QTP work with Host Explorer 14 terminal emulator and it is giving all kinds of errors. I read that it will work in a forum.
1
2
109
asked 12 years ago by kaptainkayoss
updated 12 years ago by kaptainkayoss
I used to be able to connect my QTP 11 to Oracle and SQL Server on my old Windows XP machine. Now we've upgraded to Windows 7 64 bit, and my scripts fail when trying to execute an Open command on my database object. I've checked my connection string on connectionstrings.com and it looks correct. Any...
2
1
72
Case description: IF ELSE statements not working correctly: See code following code example: If testargs("LocDate") = "sysdate" Then msgbox "LocDate = sysdate" Set MyRecordSet14= DBO.Execute(" Update locdate set locdt = (SELECT TO_CHAR(SYSDATE) FROM dual) where ...
2
1
114
I have a test called CustomerInfo that has multiple reusable actions that we use in other tests. In my reusable action GetCustomerInfo, I'm using the following code to set which row I want to work with: DataTable.GetSheet("GetCustomerInfo").SetCurrentRow 2 When I call that action from my mai...