Selenium Java - JavaScriptExecutor
Given the following code snippet, what will be the output if the button is successfully clicked via JavaScript?
WebElement button = driver.findElement(By.id("submitBtn"));
((JavascriptExecutor) driver).executeScript("arguments[0].click();", button);
System.out.println("Clicked");