what is synchronization point, synchronization method, wait
property method? with examples.. plz explain this in brief
Answer Posted / nitin sharma
Synchronisation is a process which we use for performing
better excecution and results in QTP.
Why we use: QTP gives instruction one by one with the same
speed while AUT have more speed for some operation of
exceution and less speed for some operation of
excution.So,for better results and execution we use
Syncronization process.
We can use it by inserting:
1.Sync Property:It allows specific time for page to
navigate until it goes to next step.for eg: Browser
("Google").Page("Google").Sync
2.Wait Property:Here we are forcing QTP to wait before
going to next step.Suppose we have given Wait(10) and
object can display in 6 sec then it will wait for 4 sec
more. Systemutil.Run"http://www.google.com/"
Wait(10)
3.Inserting Synchronization points:We can insert through
Insert>Syncronization point.
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
When I click on a link in web page.Link should open in new window.can anyone please let me know the script for this ---Koti
Hi, is it possible for recording shortcut key during record session? The application on which I am working is web based application. This application has several shortcut key associated with menu option. I have succesfully recorded all menu option but unable to record shortcut key.
how to do the batch testing in test director using manual testing procedure?
What are the different attributes used with regular expression?
how to find that tools work well with your existing system?
In the Hybrid framework, data can access the database, excel file, XML etc. Is it true?
What is standalone database?
hi all can anyone explain how to write the code for finding the mandatory columns in table which are having (red*) (red Astrik)
How software tester can use constants and variables in scripts?
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
Differences between text and test area checkpoints?
Which features or drawbacks of QTP lead to the upgrade for a newer version?
Is it possible to use two instances of UFT on the same machine? If not why?
Explain the types of properties that quick test learns while recording?
What are the ordinal identifiers in web page?