Point point = null;
String actualImageName = imageResolver.getImagePath(imageName);
Finder finder = getCurrentScreenFinder(device);
finder.find(actualImageName, 0.7);
if (finder.hasNext()) {
Match match = finder.next();
point = new Point(match.x + (match.w / 2), match.y + (match.h / 2));
}
return point;
}