GeekInterview.com
   Home |  Tech FAQ  |   Interview Questions |  Placement Papers |  Tech Articles |  Learn |  Freelance Projects |  Online Testing |  Geeks Talk |  Job Postings |  Knowledge Base | Site Search |  Add/Ask Question

  GeekInterview.com  >  Interview Questions  >  Testing Tools  >  Winrunner

 Print  |  
Question:  Provide TSL statement which specifies keyboard input...?

Answer: Please explain WinRunner architecture.
Winrunner is a "record and play" tool.
Winrunner process is a six step process.

What is Exception Handling in WinRunner?

Provide TSL statement which specifies keyboard input


August 08, 2008 04:47:25 #1
 a_katiyar   Member Since: August 2008    Total Comments: 7 

RE: Provide TSL statement which specifies keyboard input...?
 

Functions which can be used to specify keyboard inputs :
 
    type (keyboard_input); #sends keyboard input
         eg. type ("Hello");  # type "Hello" string

               type ("<kReturn>); #press Enter

    win_type("Win",keyboard_input); #sends kb input to window

          eg. win_type("Calculator", "4"); #types "4" in win calc


    obj_type("Object",keyboard_input);#sends kb input to object
           eg. obj_type("Edit", "Hello");   # type "Hello" in editbox


For detailed usage refer WR "TSL Online Reference"


Regards,

- AK

     

 

Back To Question