Table of Contents

Interface ICoordinates

Namespace
OpenQA.Selenium.Interactions.Internal
Assembly
WebDriver.dll

Provides location of the element using various frames of reference.

public interface ICoordinates

Properties

AuxiliaryLocator

Gets a locator providing a user-defined location for this element.

object AuxiliaryLocator { get; }

Property Value

object

LocationInDom

Gets the location of an element's position within the HTML DOM.

Point LocationInDom { get; }

Property Value

Point

LocationInViewport

Gets the location of an element relative to the origin of the view port.

Point LocationInViewport { get; }

Property Value

Point

LocationOnScreen

Gets the location of an element in absolute screen coordinates.

Point LocationOnScreen { get; }

Property Value

Point