I'm trying to select a value from Dropdown on "www.parcelhero.com" but fail to do so. When I execute the script the page loads and when the dropdown is accessed the controls move down in the page and a dark animation video where the dropdown existed earlier plays. Why script is not able to access the dropdown? Is it because its there on an animation?
WebDriver driver= new FirefoxDriver();
driver.get("https://www.parcelhero.com");
WebElement element=driver.findElement(By.name("Consignor.Address.CountryId"));
Select se=new Select(element);
se.selectByVisibleText("INDIA");