All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.openqa.selenium.interactions.internal.Coordinates Maven / Gradle / Ivy

There is a newer version: 4.20.0
Show newest version
// 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();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy