Determine an element’s location on the screen once it has been scrolled into view (mainly an internal command and not supported by all clients) //: # (DO NOT EDIT THIS FILE! This is an auto-generated file. Editing for this document happens in /commands-yml/commands/element/attributes/location-in-view.yml)
Example Usage
// Not supported
# Python
element = self.driver.find_element_by_accessibility_id('SomeAccessibilityID')
element.location_in_view
// Javascript
// webdriver.io example
let element = $("~SomeAccessibilityId")
let location = driver.getElementLocationInView(element.elementId);
// wd example
let element = await driver.elementByAccessibilityId("SomeAccessibilityID");
let location = await element.getLocationInView();