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