Hello im trying to select Canada with selenium webdriver(on jav) with mozilla
my code is :
Select select = new Select(driver.findElement(By.id("address.country")));
select.selectByValue("CA");
it not working can someone please help me
<select id="address.country" name="countryIso" class="dd dd"><option value="" disabled="disabled" selected="selected">Please select a country</option>
<option value="CA">Canada</option><option value="US">United States</option></select></div>