Community
Participate
Working Groups
Build Identifier: M20100909-0800 SWTBotTreeItem#clickXY fires events in the following order: notifyTree(SWT.MouseEnter); notifyTree(SWT.MouseMove); notifyTree(SWT.Activate); notifyTree(SWT.FocusIn); notifyTree(SWT.MouseDown, createMouseEvent(x, y, 1, SWT.NONE, 1)); notifyTree(SWT.MouseUp, createMouseEvent(x, y, 1, SWT.BUTTON1, 1)); notifyTree(SWT.Selection, createSelectionEvent(SWT.BUTTON1)); notifyTree(SWT.MouseHover); notifyTree(SWT.MouseMove); notifyTree(SWT.MouseExit); notifyTree(SWT.Deactivate); notifyTree(SWT.FocusOut); However, Selection should occur directly after MouseDown, not after MouseUp. In contrast, SWTBotTableItem fires the events in the correct order. Reproducible: Always
Also, you need a 2.0.5 Version option :)