Skip to content

Instantly share code, notes, and snippets.

@msonowal
Forked from BryanHeath/scrollTo.md
Created March 13, 2019 11:26
Show Gist options
  • Select an option

  • Save msonowal/3073a380e816bd2d2777836864ce972d to your computer and use it in GitHub Desktop.

Select an option

Save msonowal/3073a380e816bd2d2777836864ce972d to your computer and use it in GitHub Desktop.
Laravel Dusk scrollTo Macro
Browser::macro('scrollTo', function($selector) {
    $this->driver->executeScript("$(\"html, body\").animate({scrollTop: $(\"$selector\").offset().top}, 0);");
    return $this;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment