180181182183184185186187188189190
* TODO Provide javadoc * @param key * @return */ public KeyboardButton convertKeyboardButton(int key) { KeyboardButton res = int2key.get(key); if (res == null) { throw new JemmyException("Unable to recognize key", key); } return res; }