When Object Repository is available what is the necessity
of having Descriptive programming which needs more
scripting efforts.

Answer Posted / sri

if we test the large applications object repository stores
many objects and it may reduce the execution speed.Object
repository may leads to wrong results sometime.So in many
companies descriptive programming is peferred.

Is This Answer Correct ?    0 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Is any limitation to xml checkpoints?

565


How can you identify the browser and its information using QTP script?

552


Describe function procedure in vbscript.

555


How to handle dynamic objects in quicktest professional (qtp)?

550


Differences between quicktest professional (qtp) and winrunner?

626






I want to do Certification course in QTP. For this I request you to suggest the best Tutorial in PDF format. Hence, if possible, kinldy mail PDF file to my mail-ID: sushmapokhriyal79@gmail.com

1500


What is clean sweep?

1382


Step 3&4 are repeated until an the object in recognised uniquely.

1527


i have to login into gmail loginpage i have to pass testcase into userid and password by using functions. the test case of user id is it should take only lowerletters alphabetin between 4 to 6 length.it should not take spectial letters.it should not take numbers.testcase for password is it should take numbers and it should not take alphabets note the following things must happen 1 when i give correct password and userid that password and userid should be seen in QTP result and notepad,xl sheet 2 when i gave in valid password the system willgive message please give valid password that particular messaage should be seen in QTP result,norepa and xl sheet

1763


What r the different filters in defect in quality center

3288


What are the ways you can synchronize?

587


How qtp identifies objects?

572


What are the different types of recording modes?

542


How will we compare the texts in the two word files using QTP writing the script in Descriptive Programming. Thanks

1549


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

2427