How can we do this one ? at runtime qtpwindow and browser
aren't disply on monitor (or) aren't visible on desktop?how?
Answer Posted / srinivas
Question is not clear
If you are talking about if the browser is not displayed on
desktop
you can use this code to open a browser
SystemUtil.Run "C:\Program Files\Internet
Explorer\IEXPLORE.EXE"
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is the framework your company is following. What is the reason. Explain why key word driven frame work is chosen.
HOw to add the recovery file at runtime to the test file .
Write a QTP script to enter a keyword in to Google search engine?
What kinds of security (firewalls, encryptions, passwords, etc.) will be required and what is it expected to do? How can it be tested?
What is different command used in command Prompt while using QTP?
hai, i completed my b.tech in 2010 with 62.3%. i having knowledge on manual testing and Qtp. i want Relavent experience in testing.watever may be d salary i dont bother..I just want to gain knowledge. i dont have good communication skills.
Can we run multiple QTP scripts one after the other without manual intervention? How?
i need to add 1000 users in a domain i written the script for that and it is running successfuly but the problem is that my system is not the user of that domain in which i have to add users so for adding users in that domain i have to install qtp on that another system, can anybody suggest me the way to add those users from my system ultimately i want to know how to access remote computer through script
how will load the object during runtime?
how to write the descriptive programming in QTP for remove the object value and substitute, with a variable then call the validation from excel
Why do we use "Text checkpoint" If we can make use of it in "standard checkpoint" ?
Explain measuring transaction.
How does QTP identify an object?
How do know the number of browsers opened?
I used the below code to open QTP through VBscript?But i can unable to Invoke QTP...PLZ help me with the correct code to invoke QTP through VBS with description of the code aswell. Dim qtApp 'As QuickTest.Application 'Declare the Application object variable Dim qtTest 'As QuickTest.Test 'Declare a Test object variable Dim qtResultsOpt 'Declare a Run Results Options object variable Set qtApp = CreateObject("QuickTest.Application") 'Create the Application object qtApp.Launch 'Start QuickTest qtApp.Visible = False 'Make the QuickTest application visible qtApp.Open "C:\form", True 'Open the test in read-only mode 'set run settings for the test Set qtTest = qtApp.Test qtTest.Run 'Run the test 'WScript.StdOut.Write "Status is: " & qtTest.LastRunResults.Status 'Check the results of the test run qtTest.Close 'Close the test qtApp.quit 'Close QuickTest Pro Set qtResultsOpt = Nothing 'Release the Run Results Options object Set qtTest = Nothing 'Release the Test object Set qtApp = Nothing 'Release the Application object