102103104105106107108
* Constructs a bot that will match the contents of the given parentWidget. * * @param parent the parent */ public SWTBot(Widget parent) { this(new ChildrenControlFinder(parent), new MenuFinder()); }
109110111112113114115
118119120121122123124
119120121122123124125
40414243444546
* Constructs a bot that will match the contents of the given parentWidget. * * @param parent the parent */ public SWTFormsBot(Widget parent) { this(new ChildrenControlFinder(parent), new MenuFinder()); }