I\'m trying to select an element from a select list in selenium using java with WebDriver - based syntax.
I\'ve got the select list by
elements =
element = driver.findElements(By.xpath("//form[@action='inquiry/']/p/select[@name='myselect']/option[*** your criteria ***]")); if (element != null) { element.click(); }
find the option, and then click it
click