How to record objects of Windows taskbar
Answers were Sorted based on User's Feedback
Answer / sreeprasad
The best way to record the windows taskbar is "Analog
Recording Mode".
Because the Analog Recording enables u to record the exact
mouse & key board opertions u perform in relation to either
the screen.In this recording mode Quick Test records &
track every movement around a screen or window.
Is This Answer Correct ? | 10 Yes | 1 No |
Answer / uday kumar_anem
' Launch the Task Manager window
SystemUtil.Run "taskmgr.exe","", "","open"
Dialog("Windows Task Manager").WinTab
("SysTabControl32").Select "Processes"
Dialog("Windows Task Manager").WinTab
("SysTabControl32").Select "Applications"
Dialog("Windows Task Manager").WinMenu
("Menu").Select "Options;Hide When Minimized"
Dialog("Windows Task Manager").WinMenu
("Menu").Select "View;Refresh Now"
Is This Answer Correct ? | 4 Yes | 5 No |
You will receive the mail in your outlook from client at night time to go ahead for the execution. Based on the mail you need to trigger the batch run. What is the QTP Code for this?
Hello everyone, I am trying to parametrize a script. Its clear to me that, we use data table to enter various text data. but if I want to change the radiobutton (e.g. if for first iteration I selected radio button 'A' and for second iteration I want to use 'B' radio button for second iteration) then how can I make it happen. I have tried to define the question but still if not clear plz tell me. Thanks everyone
How to work with multiple browsers when opened in the window, write the script for it
What is data driven testing in QTP?
What is the difference in testing a client-server application and a web application?
How to make arguments optional in a function?
What is the latest version in QTP?
55 Answers Bharti, Polaris, US Technology,
Please let know the scripts for counting number of repeated letters in the word. Note repeated letter should not be count agian. Ex: If "Hello" is my word... l is coming twice.. it should count once and print... secong 'l' should not count again..
How to launch application under test through VBscript without using systemutil.run or invokeapplication?
Can anyone tell me what is the equivalant method to be used in QTP for "web_obj_get_text" used in winrunner. My winrunner code is below. set_window("Confirm Add Subscriber"); rc = web_obj_get_text("Add subscriber:","#8","#1",orderID,"The order number is","\.",1); basically I need to retrieved the "orderID " from a string present in 8th row & 1st col of table "Add subscriber"
what is synchronization point, synchronization method, wait property method? with examples.. plz explain this in brief
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