Skip to content

Instantly share code, notes, and snippets.

@MKorostoff
Created April 16, 2015 22:01
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save MKorostoff/c94824a467ffa53f4fa9 to your computer and use it in GitHub Desktop.
Save MKorostoff/c94824a467ffa53f4fa9 to your computer and use it in GitHub Desktop.
Scroll into view with behat
/**
* @When I scroll :elementId into view
*/
public function scrollIntoView($elementId) {
$function = <<<JS
(function(){
var elem = document.getElementById("$elementId");
elem.scrollIntoView(false);
})()
JS;
try {
$this->getSession()->executeScript($function);
}
catch(Exception $e) {
throw new \Exception("ScrollIntoView failed");
}
}
@brooke-heaton
Copy link

Hello MKorostoff,

Is it possible to do the same, but by element's text?

This would be nice as well - for instance scrolling to an anchor tag with linked text.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment