Selenium Java - JavaScriptExecutor
What will be the result of the following Selenium Java code snippet?
WebElement element = driver.findElement(By.id("footer"));
((JavascriptExecutor) driver).executeScript("arguments[0].scrollIntoView(false);", element);
System.out.println(element.isDisplayed());