* {{> grabPageScrollPosition }}
()
| 1705 | * {{> grabPageScrollPosition }} |
| 1706 | */ |
| 1707 | async grabPageScrollPosition() { |
| 1708 | function getScrollPosition() { |
| 1709 | return { |
| 1710 | x: window.pageXOffset, |
| 1711 | y: window.pageYOffset, |
| 1712 | } |
| 1713 | } |
| 1714 | |
| 1715 | return this.executeScript(getScrollPosition) |
| 1716 | } |
| 1717 | |
| 1718 | /** |
| 1719 | * {{> seeTitleEquals }} |
nothing calls this directly
no test coverage detected