Closed GoogleCodeExporter closed 9 years ago
Idea for RobotFixture:
public void pressKeysThenRelease(int... keyCodes)
{
for (int keyCode : keyCodes)
keyPress(keyCode);
waitForIdle();
for (int keyCode : keyCodes)
releaseKey(keyCode);
}
Instead of using releaseKey(int), we mind think about a method similiar to
keyPress(int) which doesn't have a waitForIdle() after each key is released.
Original comment by matthi...@gmail.com
on 28 May 2008 at 2:44
[deleted comment]
Set the module as a label, instead of being part of the title.
Original comment by Alex.Rui...@gmail.com
on 1 Dec 2008 at 1:59
Robot already provides the method 'pressAndReleaseKey(KeyPressInfo)' where
KeyPressInfo has the key code and (optionally) the code of the modifier to
press.
Other than modifiers, I don't see why we would like to press two keys
simultaneously.
Original comment by Alex.Rui...@gmail.com
on 21 Jan 2009 at 6:24
Original issue reported on code.google.com by
Alex.Rui...@gmail.com
on 28 May 2008 at 1:51