ischerbakov
10 years agoOccasional Contributor
Problem with simulating pressing Ctrl+A and Enter keys in the Flex under Chrome
Hello! I test Flex application which use rich text editor. For initial clearing of text I use simulation of keypresses Ctrl+A, Del: ///////////////////////////// var editor = RockstarFlex.FindChi...
- 10 years ago
Use:
RockstarFlex.Keys("^a");
Instead of:
RockstarFlex.Keys("^A");
Would need a code example for this issue:
"Color palette should be closed by clicking "Enter" key and value from textBox should be saved. However, if I run test from Chrome, palette closes, but color does not saves. If I do same actions manually from keyboard, all works fine."
- 10 years ago
Ryan_Moran, thank you very much!
It is really work!!!
Thanks