* {{> scrollPageToBottom }}
()
| 907 | * {{> scrollPageToBottom }} |
| 908 | */ |
| 909 | scrollPageToBottom() { |
| 910 | return this.executeScript(() => { |
| 911 | const body = document.body |
| 912 | const html = document.documentElement |
| 913 | window.scrollTo(0, Math.max(body.scrollHeight, body.offsetHeight, html.clientHeight, html.scrollHeight, html.offsetHeight)) |
| 914 | }) |
| 915 | } |
| 916 | |
| 917 | /** |
| 918 | * {{> scrollTo }} |
no test coverage detected