The driver is not unable to locate the element defaultCurrency by xpath.
Error -"org.openqa.selenium.ElementNotVisibleException: Element is not currently visible and so may not be interacted with."
Code :
driver.findElement(By.xpath("//[@id='currency']/fieldset[2]/table/tbody/tr[1]/td[2]")).click();
WebElement defaultCurrency = driver.findElement(By.xpath(".//*[@id='defaultCurrency']"));
Select defaultCurrency_Select = new Select(defaultCurrency); defaultCurrency_Select.selectByVisibleText("USD");
Source Code :
<td>
<select id="defaultCurrency" class="validate[required]" onchange="javascript:clrErrors()" style="height:25px;width:160px;" name="defCurrency.defaultCurrency">
<option value="">Select Currency..</option>
<option value="INR">GBP</option>
<option value="EUR">EUR</option>
<option value="USD">USD</option>
</select>
</td>
select? Any javascript or CSS that hides it or shows it depending on a users action? Is it visible on page load or do you have to do something on the page to get it appear? – Arran Nov 13 '12 at 16:01