Hi. I just started using WindowTester and I ran into an issue with clicking on items that don't take normal focus.
In my widget, I have a Composite that needs to get focus. The composite contains some labels but no traditionally focusable widgets. I can tab to the composite, but calling composite.setFocus() gets ignored. I found that calling composite.forceFocus() yielded the desired behavior.
So in trying to test my widget with WindowTester, I found that calling ui.click(<widget locator>); appears to have the same issue. At least the focus is not where I expect after execution.
Am I missing something? I am working around the issue, but it will probably crop up again.