UNPKG

@vladlearns/cy-scrolltoby

Version:

Cypress custom command "cy.scrollToBy" for iterative scrolling in e2e tests. Scroll to a place on the page by some distance

11 lines (9 loc) 236 B
/// <reference types="cypress" /> declare namespace Cypress { interface Chainable { scrollToBy (options: { direction?: string, frequency?: number, interval?: number, timeout?: number}): Chainable<Element> } }