RAMU

Last Comment

How to get the Browser window ...

2008-11-20 @ 12:41:11 pm
by venugopal


there are many problems we will ...

2008-07-16 @ 03:58:49 pm
by Ramu


what r the challenges have faced ...

2008-07-15 @ 10:57:24 am
by veerachary


attached the answers of the above ...

2008-07-10 @ 04:38:52 pm
by Ramu


Can you please provide the answers ...

2008-07-10 @ 04:07:58 pm
by chakri


Calendar

August 2010
SunMonTueWedThuFriSat
 << < > >>
  12345
6789101112
13141516171819
20212223242526
2728293031  

Announce

Who's Online?

Member: 0
Visitor: 1

rss Syndication

Choose a skin



Links

    10 Jul 2008 

    Following script will be useful to highlight the data available in the Web application textbox.

    Set WshShell = CreateObject("WScript.Shell")
    wait(1)
    Browser("info").Page("info").WebEdit("uname").Set "Ramu"
    wait(1)
    Browser("info").Page("info").WebEdit("uname").FireEvent "onfocus"
    WshShell.Sendkeys "^a"


    Ramu · 67 views · 0 comments
    10 Jul 2008 
    Following statements will helps you to send mail automatically through QTP.
    For that you need to have a MS Outlook with mail server connected to it in your machine

    Dim objOutlookMsg
    Set objOutlook = CreateObject("Outlook.Application")
    Set objOutlookMsg = objOutlook.CreateItem(0)
    objOutlookMsg.To = "ramu.palanki@gmail.com"
    objOutlookMsg.BCC ="ramu.palanki@gmail.com"
    objOutlookMsg.Subject = "Sending Mail through QTP Script"
    objOutlookMsg.Body ="Hello QTP"
    objOutlookMsg.Attachments.Add("C:\Result.html")
    objOutlookMsg.Send


    Ramu · 79 views · 3 comments
    Categories: Working on Outlook
    10 Jul 2008 
    Following script will create an Excel file and types some value(Hello) and saves it in C Drive

    Below code will be helpful for creating  and closing excel sheet

    Dim xlApp
    Dim xlBook
    Dim xlSheet

    Set xlApp=CreateObject("Excel.Application")
    Set xlBook=xlApp.workbooks.add
    Set xlSheet=xlBook.activesheet
    xlSheet.cells(1,1)="helloo"


    xlBook.saveas "C:\test.xls"
    xlApp.quit

    Ramu · 79 views · 1 comment
    Categories: Excel Object
    10 Jul 2008 

    If Browser ("micClass: =Browser","index: =0").Exist (0) Then             
        Browser ("micClass: =Browser","index: =0").Close
    With the above statement, we can close all the opened browesers in the desktop



    Ramu · 29 views · 0 comments
    10 Jul 2008 

    Reporter Object is used for sending information to the test results. With the help of this object you can:

    • Report the status of test results (like pass, fail, warning)
    • Enable/Disable reporting of step(s) following the statement.
    • Retrieve the folder path in which the current test's results are stored.
    • Retrieve the run status at the current point of the run session.

    There are some very important methods and properties associated with it.

    ReporterEvent Method:

    I think this is a very common method used with Reporter object. I am sure even if you have worked on QTP for a relatively short period, you would have come across this.

    Its syntax:

    Reporter.ReportEvent EventStatus, ReportStepName, Details

    where EventStatus can be:

    0 or micPass: If this step runs test passes which is shown in test report.

    1 or micFail: If this step runs test fails which is shown in test report.

    2 or micDone: Used to send message to the test report and does not affect status of test.

    3 or micWarning: Again, used to send warning message to the test report and does not affect status of test.

    and

    ReportStepName is name of step

    and

    Details are the user defined details for the given step.

    For Example:

    Reporter.ReportEvent micPass, "Login Authorization", "The user-defined step passed."

    Filter property

    There can be situations where you don't want the full status displayed on the test report. This property can be used to selectively filter the status of your tests.

    Its syntax:

    Reporter.Filter = NewMode

    where NewMode can be:

    0 or rfEnableAll: This is the default mode. All reported events are displayed in the Test Results.

    1 or rfEnableErrorsAndWarnings: Only those events with a warning or fail status are displayed in the Test Results.

    2 or rfEnableErrorsOnly: Only those events with a fail status are displayed in the Test Results.

    3 or rfDisableAll: All events in the Test Results are disabled.


    ReportPath Property

    This is used to get the path in which current test results are stored.

    Its syntax:

    Path_of_Results = Reporter.ReportPath

    RunStatus Property

    This is used to get the current status of the run session

    Its syntax:

    Reporter.RunStatus

    For Example:

    if Reporter.RunStatus = 0 then flag=1;


    Ramu · 58 views · 2 comments
    Categories: Reporter Object
    10 Jul 2008 
    1. The toolbar enables you to view the details of an individual action or the entire test flow is

    A. Testing toolbar
    B. None of the above
    C. Action toolbar
    D. Test Pane

    2. The key that is used to Start/End analog recording mode ?

    A. F3
    B. SHIFT+ALT+F3
    C. CTRL+SHIFT+F3
    D. F10

    3. QuickTest supports virtual object for analog or low-level recording.

    A. False
    B. True

    4. To use a specific property to identify your object, but that property is not listed in the properties list. Then how do you identify that object?

    A. Add the specific property to the list
    B. Use the Default property
    C. Use some other property to identify your object

    5. The checkpoint used to check the alt attribute exists for all relevant objects (such as images) is

    A. Database CheckPoint
    B. Accessibility checkpoint
    C. Bitmap checkpoint
    D. Standard checkpoint

    6. Bitmap checkpoint is supported in VB environment.

    A. True
    B. False

    7. Can we parameterize the checkpoints properties?

    A. No
    B. Yes

    8. What is the shortcut key that is used for a Standard Checkpoint?

    A. F12
    B. F2
    C. F10
    D. F7

    9. Can we change name of checkpoint?

    A. No
    B. Yes

    10. To compare the values of the specified property during a run session with the values stored for the same test object property within the test.

    A. Checkpoint
    B. All the above
    C. Output Value
    D. Compare the object property

    11. You will use which recording mode for an object not recognized by QuickTest?

    A. Low-Level Recording Mode
    B. Normal recording Mode
    C. Analog Mode

    12. The statement that calls the recorded analog file is:

    A. RunAnalog
    B. CallAnalog
    C. ExecuteAnalog

    13. An action can be called by other tests or actions is:

    A. Call Action
    B. Split Action
    C. Reusable Action

    14. You can replace the page in your Active Screen tab:

    A. False
    B. True

    15. QuickTest adds a checkpoint statement in the Expert View as:

    A. Check Checkpoint
    B. Checkpoint

    16. A Checkpoint checks that a text string is displayed within a defined area in a Windows application is:

    A. Accessibility
    B. Text Area
    C. Standard
    D. Text

    17. In ACTIVE X environment, an ACCESSIBILITY checkpoint is supported?

    A. No
    B. Yes

    18. Can we get the execution time for an action in a Test?

    A. Yes
    B. No

    19. Can we add external library files in QTP?

    1. No
    2. Yes

    20. The method used to get data from HTML Table is

    A. GetData(Row,Col)
    B. GetRowValue(Rowid,Colname)
    C. GetCellData (Row,Col)

    21. The Command used to insert the transactions in test is:

    A. StartTransaction(Name¯), EndTransaction(Name¯)
    B. Services.StartTransaction "Name", Services.EndTransaction "Name"
    C. StartTransaction.services "Name¯, EndTransaction.services "Name"

    22. A step in which one or more values are captured at a specific point in your test and stored for the duration of the run session is:

    A. Output Value
    B. Checkpoints
    C. Active Screen

    23. QuickTest can detects an application crash and activate a defined recovery scenario to continue the run session.

    A. True
    B. false

    24. In Batch Test process, the test list are saved in file format as:

    A. *.mtb
    B. *.mts
    C. *.mbt
    D. *.mtr

    25. The command used to invoke other application from QTP:

    A. InvokeApplication
    B. SystemUtil.Run
    C. Run
    D. Both b & c
    E. Both a & b

    26. The command used to retrieve data from excel sheet is

    A. Set ab = Connection("srcfilepath ") , Set ws = ab.getdata(sheetid)
    B. Set ab = CreateObject("srcfilepath ") , Set ws = ab.getsheet(sheetid)
    C. Set ab = GetObject("srcfilepath") , Set ws = ab.worksheets(sheetid)

    27. The method that explicitly activates the recovery scenario mechanism is:

    A. recovery.activate
    B. enable
    C. recovery.enable
    D. activate

    28. The method used for sending information to the test results is:

    A. Reporter.log()
    B. Reporter.reportevent()
    C. Reporter.msgbox()
    D. Reporter.report()

    29. To terminate an application that is not responding we use:

    A. SystemUtil.terminate
    B. SystemUtil.Stop
    C. SystemUtil.CloseProcessByName

    30. The recovery mechanism does not handle triggers that occur in the last step of a test:

    A. false
    B. True

    31. We can add Test object methods, function calls into the Test using:

    A. Function generator
    B. Step generator
    C. Object repository

    32. The method that adds to the test while implementing synchronization is:

    A. Synchronize
    B. Wait
    C. WaitProperty
    D. Pause

    33. The mechanism used to identify objects during run session is

    A. Recovery scenario
    B. Smart identification
    C. Handling object

    34. Post-recovery test run options specifies:

    A. how to continue the run session after QTP identify the event
    B. errors while running
    C. recovery scenario during a run session

    35. The action that can be called multiple times by the test as well as by other tests is called:

    A. non-reusable action
    B. Reusable action
    C. External action

    36. The command used to connect with Database is:

    A. Createobject(connectivity name¯)
    B. dbconnect(connectivity name)
    C. open(connectivity name)
    D. None of the above

    37. The method used to retrieve the folders is:

    A. FileSystemObject.Getfolder()
    B. FileSystemObject.selectfolder()
    C. FileSystemObject.retrievefolder()

    38. The method used to compare 2 XML files is:

    A1. XMLfile1.compare(XMLfile2)
    B. XMLcompare(file1,file2)
    C. compare(XMLfile1,XMLfile2)

    39. The QTP script files are stored in the extension of

    A. *.mts
    B. *.usr
    C. *.mtr
    D. *.vbs

    40. The method used to register the user-defined function with test object is:

    A. setFunc()
    B. RegisterUserFunc()
    C. RegisterFunc()

    41. The method used to open the specified URL in a browser is:

    A. openURL()
    B. navigateURL()
    C. navigate()

    42. The 3 Parameter types available in data driver is:

    A. DataTable,Environment,Random number
    B. DataTable,random number,unique
    C. environment,string,numeric

    43. The method added to the test while parameterizing is:

    A. get Data (variable, dtGlobalSheet)
    B. get DataTable(variable, dtGlobalSheet)
    C. Set Data(variable, dtGlobalSheet)
    D. Set DataTable(variable, dtGlobalSheet)

    44. The length of the array can be get by the method:

    A. length(array)
    B. ubound(array)
    C. count(array)

    45. The method used to get the count value of list box or combo box is:

    A. GetItemsCount
    B. GetCount
    C. GetItemCount

    46. To retrieve the current the objects in your application during the run session:

    A. GetVisibleText
    B. GetROProperty
    C. SetROProperty
    D. GetTOProperty

    47. The list of test objects and their properties and values are stored in the:

    A. Object Repository
    B. Object Identification

    48. The method used to continue the test execution after getting run-time error is:

    1. On Error Resume Next
    2. On Error Raise Next
    3. On Error Next
    Ramu · 321 views · 3 comments
    Categories: QTP Certification
    10 Jul 2008 
    what is smart identification technique?

    · 44 views · 0 comments
    Categories: Object identification
    10 Jul 2008 
    How can we identify Browser? I mean with which properties?

    · 182 views · 1 comment
    10 Jul 2008 
    Wht is meant by OR?

    · 20 views · Leave a comment
    09 Jul 2008 
    How can i send automatic mail through QTP statements?

    Ramu · 21 views · 0 comments
    Categories: Working on Outlook

    Previous page  1, 2, 3  Next page