I'm using accelerator to perform CTRL+C then CTRL+V using java/junit is there a way to get the value of CTRL+V to check it ?
accelerator key value java.awt.event.KeyEvent
1.6k views Asked by lola At
2
There are 2 answers
0
On
If you mean how do I simulate the ctrl+V and ctrl+C events within a JUnit test for a Swing application, then I would recommend looking at FEST. Using FEST, you can simulate mouse clicks, or key presses. To simulate a ctrl+V, you would do:
// import static java.awt.event.KeyEvent.*;
dialog.list("employees").pressKey(VK_CONTROL)
.pressAndReleaseKey(VK_V)
.releaseKey(VK_CONTROL);
and so on. For more information on simulating user input, see the wiki Simulating Keyboard Input.
As mentioned here, a menu accelerator key stroke such as Ctrl+V should be constructed in a platform independent manner:
For comparison, you can get the menu item's
KeyStroke
viagetAccelerator()
or from anyKeyEvent
viaKeyStroke.getKeyStrokeForEvent()
.