Articles

Loading

3 ways to use keyboard input in QuickTest Professional: Type, SendKeys and Device Replay

Tool Manual - HP
Author
AJAy
Date
2013-11-19 20:01
Views
17296688

There
are three ways to use keyboard input in QuickTest Professional: Type, SendKeys
and Device Replay. Why, you might ask, use the Type or Sendkeys method
at all?  While you wouldn’t want to automate a whole script using SendKeys
only, sometimes you may, on occasion, need to automate a section of an
application where there is no object recognition.  For example, some
unsupported grids or treeviews in Quick Test Pro can be navigated using a
combination of the HOME, END and arrow keys.  Also — I’ve seen
applications where some fields need to have a keyboard event occur to trigger
some other behavior (like tabbing of a field) using the objects standard Set
method –- which would not work in this case.


1. QTP’s TYPE METHOD


Most
objects support the TYPE method.  Type will enter the specified string
into an object or perform a certain keyboard combination against an
application.  For example:


To
tab off an object you would use the following syntax:


SwfObject(“swfname:=Blank”).Type
micTab


To
enter text:



SwfObject(“swfname:=Blank”).Type “This is my string”


To
send an enter keystroke:


SwfObject(“swfname:=Blank”).Type “


You
can also send a combination of keystrokes at one time. The following holds down
the CTRL and the Shift Keys, then presses the “L” key and releases the CTRL and
Shift keys:



SwfObject("swfname:=Blank").Type micCtrlDwn + micShiftDwn +
"L" + micShiftUp + micCtrlUp


*Important
to remember: If you send a down keystroke, be sure to follow it with its
corresponding up stroke, as seen in the above example.  Problems can arise
by sending a micCtrlDwn and forgetting to release it using micCtrlUp. So, rule
of thumb — if you are pressing a key, make sure to also release it.


2. VBScript SendKeys Method ( Also check out: QTP’s
VBscript SendKeys FAQ
)


There
are instances in which QTP’s Type method does not trigger certain events, or is
unable to mimic certain keystrokes.  In these cases, VBScript SendKeys
method can be used. To use the SendKeys you need to first set the WshShell
object:



Dim mySendKeys

set mySendKeys = CreateObject("WScript.shell")

mySendKeys.SendKeys(“{TAB}”)


To
send the text you would use:



mySendKeys.SendKeys(“This is my string”)


To
send an enter keystroke:


mySendKeys.SendKeys(“~”)


*A
few important tips: Unlike the QTP TYPE method, you will need to use
curly braces for arguments like a TAB or Up arrow key strokes. Also — SendKeys
has the following special characters:  Alt(%), Ctrl(^), Shift(+) and
Enter(~) keys.


So,
to send a CTRL and press the A key you would send:



mySendKeys.SendKeys("^A")


If
you need to perform the same keystroke multiple times, you can create a
compound string argument. This will allow you to perform a specific keystroke
and repeat it any number of times. To select, say, the 10th row in a grid
control you might use:


mySendKeys.SendKeys(“{DOWN 10}”)


This
will send the down key ten times. (For a more detailed explanation of SendKeys
check out VBScript Programmer’s Reference.)


Important

You’ll need to make sure that the application or object you wish to receive the
keystroke has focus before sending the keystroke.


*Common
issues with this method:


(Sometimes
multiple keystrokes will not work. If this is the case, try executing each one
in a separate line.)


3. Device Replay


This
is an undocumented and unsupported QuickTest method, but can be used as a last
resort. To employ this method, you’ll need to create a Device Replay object.


To
tab off an object:



Dim myDeviceReplay


Set
myDeviceReplay = CreateObject(“Mercury.DeviceReplay”)


myDeviceReplay.PressKey
15


*Remember
that Device Replay uses ASCII characters


To send text you would use:


myDeviceReplay.SendString “This is
my string”


To
send an enter keystroke:


myDeviceReplay.PressKey 28 ‘ASCII
code for enter


From
The HP knowledge base:


The
functions that can be used with the Device Replay object are (all coordinates
are relative to the top left corner of the screen):

 

Function

Description

MouseMove x, y

Move the mouse to the screen coordinate (x,y).

MouseClick x, y, button

Move the mouse to the screen coordinate (x,y)
and click the button

(0=left; 1=middle; 2=right).

MouseDblClick x, y, button

Move the mouse to the screen coordinate (x,y)
and double-click the button

(0=left; 1=middle; 2=right).

DragAndDrop x, y, dropx, dropy, button

Drag the mouse from screen coordinate (x,y) to
(dropx,dropy) with the button

(0=left; 1=middle; 2=right) pressed.

PressKey key

Press a key using the ASCII code of the key.
For example, Chr(13), vbCR and vbTab.

MouseDown x, y, button

Press the mouse button on screen coordinate
(x,y).

MouseUp x, y, button

Release the mouse button on screen coordinate
(x,y).

KeyDown key

Press a key using the ASCII code of the key.
For example, Chr(13), vbCR and vbTab.

KeyUp key

Release a key using the ASCII code of the key.
For example, Chr(13), vbCR and vbTab.

SendString string

Type a string.

 

 


Hope
this helps.


 

Total 0

Total 20,613
Number Title Author Date Votes Views
20613
SileniusStor is specialized in reselling Cheap Aquafadas software online.
Softwareces | 2022.09.15 | Votes 0 | Views 15930276
Softwareces 2022.09.15 0 15930276
20612
CSStore is specialized in reselling Cheap Steinberg software online.
Softwareces | 2022.09.04 | Votes 0 | Views 15810646
Softwareces 2022.09.04 0 15810646
20611
Software Tester Community Website
ItSeTsQtBer | 2021.04.11 | Votes 0 | Views 16640065
ItSeTsQtBer 2021.04.11 0 16640065
20610
SoapUI Certification Course Content
Steveskok | 2021.02.08 | Votes 0 | Views 16522617
Steveskok 2021.02.08 0 16522617
20609
JavaScript Course Content
Steveskok | 2021.02.08 | Votes 0 | Views 16544902
Steveskok 2021.02.08 0 16544902
20608
Why most mobile testing is not continuous?
(TestExpert) | 2021.02.04 | Votes 0 | Views 16806811
(TestExpert) 2021.02.04 0 16806811
20607
8 Common Mistakes When Planning and Documenting Your Tests
(TestExpert) | 2021.02.04 | Votes 0 | Views 17036229
(TestExpert) 2021.02.04 0 17036229
20606
Types of Performance Testing
Jamessmith | 2021.01.17 | Votes 0 | Views 16378652
Jamessmith 2021.01.17 0 16378652
20605
How to Build E2E Test Cases (1)
tanthanh | 2020.05.28 | Votes 0 | Views 16779367
tanthanh 2020.05.28 0 16779367
20604
[White Paper] Delivering better software using Test Automation
tanthanh | 2020.05.28 | Votes 0 | Views 16126978
tanthanh 2020.05.28 0 16126978
20603
[Whitepaper] How to choose the right API Testing Solution
tanthanh | 2020.05.28 | Votes 0 | Views 16218795
tanthanh 2020.05.28 0 16218795
20602
[Whitepaper] How to choose the right API Testing Solution
tanthanh | 2020.05.28 | Votes 0 | Views 16369347
tanthanh 2020.05.28 0 16369347
20601
TestOps Introduction
VTB | 2020.03.23 | Votes 0 | Views 16053826
VTB 2020.03.23 0 16053826
20600
TestOps Implementation Case Study
VTB | 2020.03.23 | Votes 0 | Views 17170985
VTB 2020.03.23 0 17170985
20599
Selenium Automation Tester Certification Sample Exam Set 3
(TestExpert) | 2020.02.03 | Votes 0 | Views 16364530
(TestExpert) 2020.02.03 0 16364530
20598
Selenium Automation Tester Certification Sample Exam Set 2
(TestExpert) | 2020.02.03 | Votes 0 | Views 16841292
(TestExpert) 2020.02.03 0 16841292
20597
Selenium Automation Tester Certification : Sample Exam Set 1
(TestExpert) | 2020.02.03 | Votes 0 | Views 16637559
(TestExpert) 2020.02.03 0 16637559
20596
What is agile testing? why is agile testing? and what is the benefits? (20)
oishichip | 2019.12.26 | Votes 0 | Views 16858891
oishichip 2019.12.26 0 16858891
20595
Crowd Testing — Vantagens para testadores, plataformas e clientes [pt-br]
soikmd2 | 2019.12.14 | Votes 0 | Views 16593174
soikmd2 2019.12.14 0 16593174
20594
Software Testing Industry Report (Turkey) 2018-2019 (2)
ItSeTsQtB | 2019.08.08 | Votes 0 | Views 16930688
ItSeTsQtB 2019.08.08 0 16930688
20593
How to bypass security in integration tests in ASP.Net Core
ItSeTsQtB | 2019.08.08 | Votes 0 | Views 17441080
ItSeTsQtB 2019.08.08 0 17441080
20592
For agile testing, fail fast with test impact analysis
ItSeTsQtB | 2019.08.08 | Votes 0 | Views 17028689
ItSeTsQtB 2019.08.08 0 17028689
20591
Career Path in Software Testing
^Software^ | 2019.07.28 | Votes 0 | Views 16833848
^Software^ 2019.07.28 0 16833848
20590
Challenges in Big Data Testing
^Software^ | 2019.07.22 | Votes 0 | Views 16665522
^Software^ 2019.07.22 0 16665522
20589
Essential Necessities In Big Data Testing
^Software^ | 2019.07.22 | Votes 0 | Views 16449865
^Software^ 2019.07.22 0 16449865
20588
5 Test Data Generation Techniques
^Software^ | 2019.07.22 | Votes 0 | Views 16530818
^Software^ 2019.07.22 0 16530818
20587
CI and CD for ETL (Extract-Transform-Load) testing.
^Software^ | 2019.07.22 | Votes 0 | Views 16460415
^Software^ 2019.07.22 0 16460415
20586
Quest for Quality Conference : 5-6 Nov 2019 at Dublin, Ireland
VTB | 2019.07.08 | Votes 0 | Views 16012311
VTB 2019.07.08 0 16012311
20585
TestBash Essentials Conference 2019
VTB | 2019.07.08 | Votes 0 | Views 16959050
VTB 2019.07.08 0 16959050
20584
UKSTAR Conference : 11-03-2019
VTB | 2019.07.08 | Votes 0 | Views 16638078
VTB 2019.07.08 0 16638078
20583
Testing in Context Conference Australia (TiCCA) 2019
VTB | 2019.07.08 | Votes 0 | Views 16607188
VTB 2019.07.08 0 16607188
20582
European Testing Conference 2019
VTB | 2019.07.08 | Votes 0 | Views 16306257
VTB 2019.07.08 0 16306257
20581
Automation Guild Online Conference 2019
VTB | 2019.07.08 | Votes 0 | Views 16573572
VTB 2019.07.08 0 16573572
20580
Software Quality Days 2019 : 15 Jan 2019 (1)
VTB | 2019.07.08 | Votes 0 | Views 16427447
VTB 2019.07.08 0 16427447
20579
Skills required to become a Software Tester (1)
IT-Tester | 2019.07.08 | Votes 0 | Views 16231530
IT-Tester 2019.07.08 0 16231530
20578
Automated Unit Testing with Randoop, JWalk and µJava versus Manual JUnit Testing
IT-Tester | 2019.07.08 | Votes 0 | Views 16281346
IT-Tester 2019.07.08 0 16281346
20577
Scrum Testing Guide Book (2)
IT-Tester | 2019.06.26 | Votes 0 | Views 16309918
IT-Tester 2019.06.26 0 16309918
20576
Acceptance Testing Definition in Testing vs Scrum
IT-Tester | 2019.06.26 | Votes 0 | Views 16338720
IT-Tester 2019.06.26 0 16338720
20575
User Acceptance Testing Checklist
VTB | 2019.06.20 | Votes 0 | Views 16354745
VTB 2019.06.20 0 16354745
20574
Firewalls and Types (1)
VTB | 2018.11.14 | Votes 0 | Views 16419170
VTB 2018.11.14 0 16419170
20573
Senior Test Engineer (1)
VTB | 2018.11.05 | Votes 0 | Views 16538911
VTB 2018.11.05 0 16538911
20572
Junior Test Analyst
kornadian2 | 2018.11.04 | Votes 0 | Views 16313931
kornadian2 2018.11.04 0 16313931
20571
Senior Test Engineer
kornadian2 | 2018.11.04 | Votes 0 | Views 16672449
kornadian2 2018.11.04 0 16672449
20570
Programme Test Manager, 12m, Immed Start, $NEG
kornadian2 | 2018.11.04 | Votes 0 | Views 16310068
kornadian2 2018.11.04 0 16310068
20569
Junior Test Analyst
kornadian2 | 2018.11.04 | Votes 0 | Views 16599220
kornadian2 2018.11.04 0 16599220
20568
Dev & Test Manager
kornadian2 | 2018.11.04 | Votes 0 | Views 16581537
kornadian2 2018.11.04 0 16581537
20567
Senior Test Analyst (Performance Tester)
kornadian2 | 2018.11.04 | Votes 0 | Views 16261583
kornadian2 2018.11.04 0 16261583
20566
QA Automation Test Analyst
kornadian2 | 2018.11.04 | Votes 0 | Views 16324834
kornadian2 2018.11.04 0 16324834
20565
Software/Field Testing Engineer
kornadian2 | 2018.11.04 | Votes 0 | Views 16378944
kornadian2 2018.11.04 0 16378944
20564
Compliance Technician (Tester)
kornadian2 | 2018.11.04 | Votes 0 | Views 16243193
kornadian2 2018.11.04 0 16243193