gf.scrollToBottom
gf.scrollToBottom(): Promise<void>
Section titled “gf.scrollToBottom(): Promise<void>”Scrolls the page to the scrollToBottom.
- Returns a promise that resolves when the scroll action is complete.
describe('Test script', function () { it('Test 1', async () => { // Scroll to the bottom of the page await gf.scrollToBottom(); // Proceed with further actions or assertions });});