how many types of actions r there? what r they? explain? pls
give any one answer?
Answer Posted / anil grandhi
In Qtp we have 3 types of actions.
1) Non-Reusable Action
2) Reusable Action
3) External Action
Non-Reusable Action: By default each and every action in
same test non reusable action. The action is non-reusable
action we can't reuse that action script from another test.
Reusable Action: If the action is reusable action we can
reuse that action script from any test in qtp.
External Action: When we are calling reusable action from
another test it is automatically converting as external
action. if the action is external action it can't accept any
modifications.
Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How do I generate Test Results window using descriptive method ( run time ) after my test execution process? Please have a look of my below code. ========================================================= Dim qtApp Dim qtTest Dim qtResultsOpt Set qtApp = CreateObject("QuickTest.Application") qtApp.Launch qtApp.Visible = True qtApp.Options.Run.CaptureForTestResults = "Always" qtApp.Options.Run.RunMode = "Fast" qtApp.Options.Run.ViewResults = True qtApp.Open "C:\Automation\Example", True Set qtTest = qtApp.Test qtTest.Settings.Run.OnError = "NextStep" Set qtResultsOpt = CreateObject ("QuickTest.RunResultsOptions") qtResultsOpt.ResultsLocation = "C:\Automation\Example\Res1" qtTest.Run qtResultsOpt MsgBox qtTest.LastRunResults.Status qtTest.Close Set qtResultsOpt = Nothing Set qtTest = Nothing Set qtApp = Nothing ========================================================== This code is working fine, but Test Result window is not displaying after execution. Anybody can please help me regading the same. Thanks Akshaya Madali Capgemini India Pvt Ltd 9823213538
What is the extension of the qtp local repository? If it is .mtr then what is .bdb extension stands for?
What is the difference between Keyword Driven test and Data Driven test?
How to replay a script in qtp?
HOw to add the recovery file at runtime to the test file .
how can i pass a "automation script" as a parameter in a function give me need full suggestion thank inadvance
How can we use the "CreateObject("Shell.Application")" in QTP and what is the definition and purpose of it?
How to import a test case present in ".xls" file to TD under a Test set?
how can you do retesting (datadriven test) using notepad amd by using functions NOTE u should not use datatable methods
how to post xml data from QTP scripts to any application?
How to call a test from another test?
How to add verification steps to tests?
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.
Which environments does qtp support?
Have you done batch testing in qtp? If yes how you are doing?