Cn u please clarify my doubt Where are micTab and micReturn
used.Thanx in Advance
Answers were Sorted based on User's Feedback
Answer / malathy
MicTab is used to move the cursor to next tab.
MicReturn has the functionality of "Enter" key.
For Instance,
Dialog ("Login").WinEdit ("Agent Name:"). type "hgfo"
Dialog ("Login").WinEdit ("Agent Name:"). type mictab
Dialog ("Login").WinEdit("Password:").Type "mercury"
Dialog ( "Login"). WinEdit ( "Password:"). Type micTab
Dialog ( "Login"). WinButton ( "OK"). Type micReturn
After typing the username, mictab should be used to make
the cursor move to the next tab (i.e Password).
micreturn should be used to press the "OK" button after
providing the password.
| Is This Answer Correct ? | 26 Yes | 0 No |
Answer / param
micTab and micReturn are the keyboard input constants.
Example scenario: you have a google page opened. cursor
pointed to webeditbox.
you want to search a book.
you type the book name and click search.
If you want to perform this using qtp, you can use
browser().page().webedit("data")
browser().page().webbutton("search").click
This gives you a visual perception of the mouse click.
Instead of using a click of mouse which gives us a visual
perception, we can make the keyboard to do this task using type
browser().page().webedit("data")
browser().page().webedit.type micTab
browser().page().webbutton("search").type micReturn
Note: Fill the elements in the brackets- browser and page
| Is This Answer Correct ? | 2 Yes | 15 No |
can any one say that where we can download the QTP trail version ??????????
How will you load few objects in Active Screen?
I opened gmail login into gmail and i have to save (Pass or move) all the mail into notepad please give me code Thanks of all
What is the difference between Dim And Redim
4 Answers Hotel Jobs, IBM, Microsoft,
explian qtp frame work and what is the use of it? what is the neceecity of this? explian detail?
What is object & properties (in QTP)
How iteration is related to Test Results in QTP?
anyone can explain Diff B/w Actions and Functions
How can you merge two Object Repositories?
What is the use of text output value in quicktest professional?
how to do the batch testing in test director using manual testing procedure?
Without QTP (or any Testing tool) can we able to test the GUI part of the Applications. for Example generating the Scripts in Notepad and Executing them Using VB. Is it Possible to do so..