I have to use a relatively unknown SWT-Framwork called Riena. This has an ImageButton that is composed of a Composite
and a Button(SWT_PUSH)
. This Button is invisible by default and becomes visible if you hover over the Composite with your mouse.
I want to click that button with SWTBot. How can I do that? SWTBot doesn't find the id of the Button. I think this is due to the invisible-state.
So I think that I need to hover over the Button or Composite. How can I do this, if it is possible?