Selenium Java - Handling Form Elements
What will be the output of the following code snippet?
WebElement checkbox = driver.findElement(By.id("subscribe"));
checkbox.click();
System.out.println(checkbox.isSelected());