* {{> grabPageScrollPosition }}
()
| 2899 | * {{> grabPageScrollPosition }} |
| 2900 | */ |
| 2901 | async grabPageScrollPosition() { |
| 2902 | function getScrollPosition() { |
| 2903 | return { |
| 2904 | x: window.pageXOffset, |
| 2905 | y: window.pageYOffset, |
| 2906 | } |
| 2907 | } |
| 2908 | |
| 2909 | return this.executeScript(getScrollPosition) |
| 2910 | } |
| 2911 | |
| 2912 | /** |
| 2913 | * {{> grabElementBoundingRect }} |
nothing calls this directly
no test coverage detected