org.openqa.selenium.interactions.internal.Coordinates Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of selenium-api Show documentation
Show all versions of selenium-api Show documentation
Selenium automates browsers. That's it! What you do with that power is entirely up to you.
// Copyright 2011 Google Inc. All Rights Reserved.
package org.openqa.selenium.interactions.internal;
import org.openqa.selenium.Point;
/**
* Provides coordinates of an element for advanced interactions.
* Note that some coordinates (such as screen coordinates) are evaluated lazily
* since the element may have to be scrolled into view.
*/
public interface Coordinates {
Point getLocationOnScreen();
Point getLocationInViewPort();
Point getLocationInDOM();
Object getAuxiliry();
}