Selenium Java - JavaScriptExecutor
Given the code below, what will be the output?
JavascriptExecutor js = (JavascriptExecutor) driver;
Boolean isVisible = (Boolean) js.executeScript("return document.getElementById('btn').offsetParent !== null;");
System.out.println(isVisible);