Soy nuevo en javascript y sigo este código, pero al iniciar la automatización no se desliza hacia abajo. (móvil)
`$(FORMS_ICON_HOME_SCREEN).click() const {height} = driver.getWindowSize() const anchorPercentage = 50 const startPointPercentage = 90 const endPointPercentage = 10 const anchor = height * anchorPercentage / 100 const startPoint = height * startPointPercentage / 100 const endPoint = height * endPointPercentage / 100 await $(FORM_HEADER_TEXT).click() driver.touchPerform([ { action: 'press', options: { x: anchor, y: startPoint } }, { action: 'wait', options: { ms: 1000 } }, { action: 'moveTo', options: { x: anchor, y: endPoint } }, { action: 'release', options: {} } ]) await $(ACTIVE_BUTTON).click() }); });` Como estoy empezando, poniendo tantos detalles como sea posible, por favor. Gracias