--- old/tools/Jemmy/JemmyFX/src/org/jemmy/fx/control/TableUtils.java 2017-02-10 15:02:02.437466561 +0300 +++ new/tools/Jemmy/JemmyFX/src/org/jemmy/fx/control/TableUtils.java 2017-02-10 15:02:02.385465971 +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); }