So I made a short bit of selenium code, it isn't letting me select elements though! I do not understand. I try copy and pasting examples and none work because of this.
It says: NoSuchElementException: Unable to locate element #login\-input
Here is my java code:
WebDriver driver = new FirefoxDriver();
driver.manage().timeouts().implicitlyWait( 10, TimeUnit.SECONDS );
driver.get( "https://www.ticketmaster.com/review" );
WebElement inputElement = driver.findElement( By.id( "login-input" ) );