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
47282397

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 Reply 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 45048873
Softwareces 2022.09.15 0 45048873
20612
CSStore is specialized in reselling Cheap Steinberg software online.
Softwareces | 2022.09.04 | Votes 0 | Views 44995042
Softwareces 2022.09.04 0 44995042
20611
Software Tester Community Website
ItSeTsQtBer | 2021.04.11 | Votes 0 | Views 45716044
ItSeTsQtBer 2021.04.11 0 45716044
20610
SoapUI Certification Course Content
Steveskok | 2021.02.08 | Votes 0 | Views 45402649
Steveskok 2021.02.08 0 45402649
20609
JavaScript Course Content
Steveskok | 2021.02.08 | Votes 0 | Views 45670663
Steveskok 2021.02.08 0 45670663
20608
Why most mobile testing is not continuous?
(TestExpert) | 2021.02.04 | Votes 0 | Views 46039506
(TestExpert) 2021.02.04 0 46039506
20607
8 Common Mistakes When Planning and Documenting Your Tests
(TestExpert) | 2021.02.04 | Votes 0 | Views 46799213
(TestExpert) 2021.02.04 0 46799213
20606
Types of Performance Testing
Jamessmith | 2021.01.17 | Votes 0 | Views 46153263
Jamessmith 2021.01.17 0 46153263
20605
How to Build E2E Test Cases (1)
tanthanh | 2020.05.28 | Votes 0 | Views 46320029
tanthanh 2020.05.28 0 46320029
20604
[White Paper] Delivering better software using Test Automation
tanthanh | 2020.05.28 | Votes 0 | Views 45863257
tanthanh 2020.05.28 0 45863257
20603
[Whitepaper] How to choose the right API Testing Solution
tanthanh | 2020.05.28 | Votes 0 | Views 45771333
tanthanh 2020.05.28 0 45771333
20602
[Whitepaper] How to choose the right API Testing Solution
tanthanh | 2020.05.28 | Votes 0 | Views 45539628
tanthanh 2020.05.28 0 45539628
20601
TestOps Introduction
VTB | 2020.03.23 | Votes 0 | Views 45301412
VTB 2020.03.23 0 45301412
20600
TestOps Implementation Case Study
VTB | 2020.03.23 | Votes 0 | Views 46130861
VTB 2020.03.23 0 46130861
20599
Selenium Automation Tester Certification Sample Exam Set 3
(TestExpert) | 2020.02.03 | Votes 0 | Views 46141021
(TestExpert) 2020.02.03 0 46141021
20598
Selenium Automation Tester Certification Sample Exam Set 2
(TestExpert) | 2020.02.03 | Votes 0 | Views 46042312
(TestExpert) 2020.02.03 0 46042312
20597
Selenium Automation Tester Certification : Sample Exam Set 1
(TestExpert) | 2020.02.03 | Votes 0 | Views 45673535
(TestExpert) 2020.02.03 0 45673535
20596
What is agile testing? why is agile testing? and what is the benefits? (20)
oishichip | 2019.12.26 | Votes 0 | Views 45000022
oishichip 2019.12.26 0 45000022
20595
Crowd Testing — Vantagens para testadores, plataformas e clientes [pt-br]
soikmd2 | 2019.12.14 | Votes 0 | Views 45450320
soikmd2 2019.12.14 0 45450320
20594
Software Testing Industry Report (Turkey) 2018-2019 (2)
ItSeTsQtB | 2019.08.08 | Votes 0 | Views 46080013
ItSeTsQtB 2019.08.08 0 46080013
20593
How to bypass security in integration tests in ASP.Net Core
ItSeTsQtB | 2019.08.08 | Votes 0 | Views 46895884
ItSeTsQtB 2019.08.08 0 46895884
20592
For agile testing, fail fast with test impact analysis
ItSeTsQtB | 2019.08.08 | Votes 0 | Views 46683846
ItSeTsQtB 2019.08.08 0 46683846
20591
Career Path in Software Testing
^Software^ | 2019.07.28 | Votes 0 | Views 46164187
^Software^ 2019.07.28 0 46164187
20590
Challenges in Big Data Testing
^Software^ | 2019.07.22 | Votes 0 | Views 45719544
^Software^ 2019.07.22 0 45719544
20589
Essential Necessities In Big Data Testing
^Software^ | 2019.07.22 | Votes 0 | Views 45120282
^Software^ 2019.07.22 0 45120282
20588
5 Test Data Generation Techniques
^Software^ | 2019.07.22 | Votes 0 | Views 45851838
^Software^ 2019.07.22 0 45851838
20587
CI and CD for ETL (Extract-Transform-Load) testing.
^Software^ | 2019.07.22 | Votes 0 | Views 45826493
^Software^ 2019.07.22 0 45826493
20586
Quest for Quality Conference : 5-6 Nov 2019 at Dublin, Ireland
VTB | 2019.07.08 | Votes 0 | Views 45736168
VTB 2019.07.08 0 45736168
20585
TestBash Essentials Conference 2019
VTB | 2019.07.08 | Votes 0 | Views 45845510
VTB 2019.07.08 0 45845510
20584
UKSTAR Conference : 11-03-2019
VTB | 2019.07.08 | Votes 0 | Views 45826839
VTB 2019.07.08 0 45826839
20583
Testing in Context Conference Australia (TiCCA) 2019
VTB | 2019.07.08 | Votes 0 | Views 45115760
VTB 2019.07.08 0 45115760
20582
European Testing Conference 2019
VTB | 2019.07.08 | Votes 0 | Views 45805179
VTB 2019.07.08 0 45805179
20581
Automation Guild Online Conference 2019
VTB | 2019.07.08 | Votes 0 | Views 46695320
VTB 2019.07.08 0 46695320
20580
Software Quality Days 2019 : 15 Jan 2019 (1)
VTB | 2019.07.08 | Votes 0 | Views 46080283
VTB 2019.07.08 0 46080283
20579
Skills required to become a Software Tester (1)
IT-Tester | 2019.07.08 | Votes 0 | Views 45846538
IT-Tester 2019.07.08 0 45846538
20578
Automated Unit Testing with Randoop, JWalk and µJava versus Manual JUnit Testing
IT-Tester | 2019.07.08 | Votes 0 | Views 44788504
IT-Tester 2019.07.08 0 44788504
20577
Scrum Testing Guide Book (2)
IT-Tester | 2019.06.26 | Votes 0 | Views 45102945
IT-Tester 2019.06.26 0 45102945
20576
Acceptance Testing Definition in Testing vs Scrum
IT-Tester | 2019.06.26 | Votes 0 | Views 45892766
IT-Tester 2019.06.26 0 45892766
20575
User Acceptance Testing Checklist
VTB | 2019.06.20 | Votes 0 | Views 45920746
VTB 2019.06.20 0 45920746
20574
Firewalls and Types (1)
VTB | 2018.11.14 | Votes 0 | Views 45290602
VTB 2018.11.14 0 45290602
20573
Senior Test Engineer (1)
VTB | 2018.11.05 | Votes 0 | Views 45760640
VTB 2018.11.05 0 45760640
20572
Junior Test Analyst
kornadian2 | 2018.11.04 | Votes 0 | Views 45708544
kornadian2 2018.11.04 0 45708544
20571
Senior Test Engineer
kornadian2 | 2018.11.04 | Votes 0 | Views 45535304
kornadian2 2018.11.04 0 45535304
20570
Programme Test Manager, 12m, Immed Start, $NEG
kornadian2 | 2018.11.04 | Votes 0 | Views 46972116
kornadian2 2018.11.04 0 46972116
20569
Junior Test Analyst
kornadian2 | 2018.11.04 | Votes 0 | Views 45991837
kornadian2 2018.11.04 0 45991837
20568
Dev & Test Manager
kornadian2 | 2018.11.04 | Votes 0 | Views 46666704
kornadian2 2018.11.04 0 46666704
20567
Senior Test Analyst (Performance Tester)
kornadian2 | 2018.11.04 | Votes 0 | Views 46615694
kornadian2 2018.11.04 0 46615694
20566
QA Automation Test Analyst
kornadian2 | 2018.11.04 | Votes 0 | Views 45686389
kornadian2 2018.11.04 0 45686389
20565
Software/Field Testing Engineer
kornadian2 | 2018.11.04 | Votes 0 | Views 45573772
kornadian2 2018.11.04 0 45573772
20564
Compliance Technician (Tester)
kornadian2 | 2018.11.04 | Votes 0 | Views 45201268
kornadian2 2018.11.04 0 45201268