Selenium Java - JavaScriptExecutor
What is the issue with this Selenium Java code snippet that attempts to click a hidden button?
WebElement btn = driver.findElement(By.id("btnHidden"));
btn.click();