Hi Osamaa
you can get element co-ordinates from the WebElement itself.
Try the below code :
WebElement ele = driver.findElement(By.className("abc"));
Point loc = ele.getLocation();
int x = loc.getX();
int y = loc.getY();
driver.tap(x, ele, y);
Hope this will help