Skip to main content
Cypress App

scrollIntoView

Scroll an element into view.

It is unsafe to chain further commands that rely on the subject after .scrollIntoView().

Syntax​

.scrollIntoView()
.scrollIntoView(options)

Usage​

Correct Usage

cy.get('footer').scrollIntoView() // Scrolls 'footer' into view

Incorrect Usage

cy.scrollIntoView('footer') // Errors, cannot be chained off 'cy'
cy.window().scrollIntoView() // Errors, 'window' does not yield DOM element

Arguments​

options (Object)

Pass in an options object to change the default behavior of .scrollIntoView().

OptionDefaultDescription
duration0Scrolls over the duration (in ms)
easingswingWill scroll with the easing animation
logtrueDisplays the command in the Command log
offset{top: 0, left: 0}Amount to scroll after the element has been scrolled into view
timeoutdefaultCommandTimeoutTime to wait for .scrollIntoView() to resolve before timing out

Yields Learn about subject management​

  • .scrollIntoView() yields the same subject it was given.
  • It is unsafe to chain further commands that rely on the subject after .scrollIntoView().

Examples​

Scrolling​

cy.get('button#checkout').scrollIntoView().should('be.visible')

Options​

Use linear easing animation to scroll​

cy.get('.next-page').scrollIntoView({ easing: 'linear' })

Scroll to element over 2000ms​

cy.get('footer').scrollIntoView({ duration: 2000 })

Scroll 150px below an element​

cy.get('#nav').scrollIntoView({ offset: { top: 150, left: 0 } })

Notes​

Snapshots​

Snapshots do not reflect scroll behavior​

Cypress does not reflect the accurate scroll positions of any elements within snapshots. If you want to see the actual scrolling behavior in action, we recommend using .pause() to walk through each command or watching the video of the test run.

Rules​

Requirements Learn about chaining commands​

  • .scrollIntoView() requires being chained off a command that yields DOM element(s).

Assertions Learn about assertions​

  • .scrollIntoView() will automatically wait for assertions you have chained to pass

Timeouts Learn about timeouts​

  • .scrollIntoView() can time out waiting for assertions you've added to pass.

Command Log​

Assert element is visible after scrolling it into view

cy.get('#scroll-horizontal button').scrollIntoView().should('be.visible')

The commands above will display in the Command Log as:

command log scrollintoview

When clicking on the scrollintoview command within the command log, the console outputs the following:

console.log scrollintoview

See also​