Suppose u run ur script today and it is working fine ,nobody
has changed the setting and all.u r the owner for the
script. But when tomorrow I ran the same script again it got
failed and It didn't able to identify one object. Can you
tell me what would be the reason for this
Answer Posted / karthikeyan
Properties of the object might be changed
| Is This Answer Correct ? | 6 Yes | 2 No |
Post New Answer View All Answers
what type of values given to objects. EX::Set oBrowser=Description.Create oBrowser(“micclass”).Value=”Browser”
How to explain a banking project in interview as a test engineer???
If you have two monitors one is of 19inch and the 2nd one is of 24inch,if you want to write same QTP script in both the two monitors is there any changes required in the script?
Is it possible to switch between recording modes during a test creation?
explain how to write vb script in qtp?when will you write own script?
How many scripts did you have?
Hoe can we do retesting using functions please give the code for it using login page
Explain the differences between table and db checkpoints?
I want to do Certification course in QTP. For this I request you to suggest the best Tutorial in PDF format, if possible, kinldy mail PDF file to my mail-ID: ramakrishna908@gmail.com Regards, krishna.
Where we can use the analog mode and where we can use the low – level mode?
How qtp identifies objects?
How to carry out bit map check points in QTP
How many types of parameters are there?
Explain the difference between check point and output value?
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