Selenium Java - Handling Form Elements
What is the issue with the following Selenium code snippet?
WebElement dropdown = driver.findElement(By.id("country"));
Select select = new Select();
select.selectByVisibleText("USA");