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