Selenium Java - Handling Form Elements
What will be the output of this Selenium Java code if the form submission disables the submit button with id 'submitBtn'?
WebElement submit = driver.findElement(By.id("submitBtn"));
boolean enabledBefore = submit.isEnabled();
submit.click();
boolean enabledAfter = submit.isEnabled();
System.out.println(enabledBefore + "," + enabledAfter);
