|
Relates :
|
The test RemoveAllShrinkTest clicks left mouse button to open Choice:
robot.mouseMove(
pt.x + choice.getWidth() - choice.getHeight()/2,
pt.y + choice.getHeight()/2);
The x coordinate uses choice.getHeight()/2 which likely will result in the wrong position and Choice does not open at all.
It should be pt.x + choice.getWidth()/2.
|