* @return a {@link SWTBotLink} with the specified <code>mnemonicText</code> with the specified <code>inGroup</code>.
*/
@SuppressWarnings("unchecked")
public SWTBotLink linkInGroup(String mnemonicText, String inGroup, int index) {
Matcher matcher = allOf(widgetOfType(Link.class), withMnemonic(mnemonicText), inGroup(inGroup));
return new SWTBotLink((Link) widget(matcher, index), matcher);
}