Location class
Provides an object that describes a coordinate. An object of this type is required as a parameter in some methods.
Import statement
import com.applitools.eyes.Location;
Location method
Syntax
Location obj = new Location();
Location obj = new Location(x, y);
Location obj = new Location(other);
Parameters
x
Type: int
The horizontal coordinate of the point in pixels (from the left of the image).
y
Type: int
The vertical coordinate of the point in pixels (from the top of image).
other
Type: Location
Another location object whose coordinate value is cloned to create this object.
Return value
Type: Location