* @throws WidgetNotFoundException if the widget is not found or is disposed.
*/
@SuppressWarnings({"unchecked", "rawtypes"})
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);
}