* @throws WidgetNotFoundException if the widget is not found or is disposed.
*/
@SuppressWarnings({"unchecked", "rawtypes"})
public SWTBotTabItem tabItemWithId(String key, String value, int index) {
Matcher matcher = allOf(widgetOfType(TabItem.class), withId(key, value));
return new SWTBotTabItem((TabItem) widget(matcher, index), matcher);
}