Files
EWF/library/test/selenium/src/se_key_stroke.e
jvelilla 63beaabfa0 Added command POST /session/:sessionId/modifier
Initial implementation of KeyBoard.
Added Mouse class, but not implemented.
2013-05-29 09:43:14 -03:00

45 lines
558 B
Plaintext

note
description: "Summary description for {SE_KEY_STROKE}."
author: ""
date: "$Date$"
revision: "$Revision$"
class
SE_KEY_STROKE
inherit
SE_KEY_CONSTANTS
create
make
feature {NONE} -- Initialization
make (a_key: STRING_32)
require
is_valid: keys.has (a_key)
do
set_key (a_key)
ensure
end
feature -- Access
key: STRING_32
-- current key
feature -- Change Element
set_key (a_key: STRING_32)
--Set `key' to `a_key'
require
is_valid: keys.has (a_key)
do
key := a_key
ensure
key_set: key = a_key
end
end