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