--- old/tools/Jemmy/JemmyFX/src/org/jemmy/fx/control/TableUtils.java 2017-02-15 15:58:13.995613774 +0300 +++ new/tools/Jemmy/JemmyFX/src/org/jemmy/fx/control/TableUtils.java 2017-02-15 15:58:13.939613252 +0300 @@ -255,8 +255,8 @@ * @return */ static Rectangle getActuallyVisibleArea(final Wrap wrap) { - final Rectangle viewArea = getContainerWrap(wrap.as(Parent.class, Node.class)).getScreenBounds(); - final Rectangle clippedContainerArea = getClippedContainerWrap(wrap.as(Parent.class, Node.class)).getScreenBounds(); + final Rectangle viewArea = getContainerWrap((Parent )wrap.as(Parent.class, Node.class)).getScreenBounds(); + final Rectangle clippedContainerArea = getClippedContainerWrap((Parent )wrap.as(Parent.class, Node.class)).getScreenBounds(); return new Rectangle(viewArea.x, viewArea.y, clippedContainerArea.width, clippedContainerArea.height); }