Checkout our demo site to practice selenium https://magento.softwaretestingboard.com/

0 like 0 dislike
650 views
by The go-to Tester (324 points)
Hi Please explain, How To Get XY Coordinates Of Element?

1 Answer

0 like 0 dislike
by The go-to Tester (181 points)
selected by
 
Best answer

You can get X and Y coordinates by simply using getX and getY functions as given below.

WebElement Image = driver.findElement(By.xpath("//yourxpathhere"));
//Used points class to get x and y coordinates of element.
Point point = Image.getLocation();
int xcord = point.getX();
System.out.println("Element's Position from left side Is "+xcord +" pixels.");
int ycord = point.getY();
System.out.println("Element's Position from top side Is "+ycord +" pixels.");
 
Hope that helps!


This site is for software testing professionals, where you can ask all your questions and get answers from 1300+ masters of the profession. Click here to submit yours now!

1.4k questions

1.6k answers

866 comments

1.9k users

...