Skip to content

gf.scrollToBottom

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
});
});