I am typing some value, on change do a total. But somehow, this event is not getting fired with selenium type command.
I also tried typeKey and typeAt ..But no succe
This worked for me in IDE do the following 3 commands in order
Typekeys targetID input
FireEvent targetID focus
Type targetID input
The source looks like this (input was letter r
)
typeKeys
//form/input
r
fireEvent
//form/input
focus
fireEvent
//form/input
focus
type
//form/input
r
type
//form/input
r