Selenium Java - JavaScriptExecutor
What will be the output of the following Selenium Java code snippet?
JavascriptExecutor js = (JavascriptExecutor) driver;
String title = (String) js.executeScript("return document.title;");
System.out.println(title);