The answer from @9ikhan is correct for getting attributes but I think it is worth mentioning one caveat with that answer, plus providing a more straightforward solution if, in fact, you are looking for the element content rather than attribute values, as you suggest.
Point 1: Syntax for getting an attribute.
The locator "//some-xpath-here/@attribute-name" is correct syntax for standard XPath but when it comes to attributes Selenium does not use standard XPath! Rather, it uses this--note the removal of the final virgule: "//some-xpath-here@attribute-name" (as originally pointed out to me by @Wesley Wiser in my question Complications with Selenium's GetAttribute method). There may be certain peculiar instances where the standard XPath syntax will work -- such as this example :-) -- but in general be aware that you need to use the Selenium syntax.
Point 2: Getting element content instead of attributes.
Here is my version of the same code. First my revised HTML to clearly delineate attribute values from content:
<html>
<body>
<select id ="bakedgoods">
<option value="1">cookie</option>
<option value="2">donut</option>
<option value="3">muffin</option>
</select>
</body>
</html>
And my code fragment happens to be in C#, but it is virtually identical to the prior Java example. Note that I have shown two variations--one for attributes and one for content, so you can uncomment the one you want to test it.
var optionCount = (int) selenium.GetXpathCount("//select[@id='bakedgoods']/option");
var optionList = new List<String>();
for (int i = 1; i <= optionCount; i++)
{
// Get element content:
// Returns: cookie, donut, muffin
String option = selenium.GetText("//select[@id='bakedgoods']/option[" + i + "]");
// Get attributes:
// Returns: 1, 2, 3
//String option = selenium.GetAttribute("//select[@id='bakedgoods']/option[" + i + "]@value");
optionList.Add(option);
}
But a much simpler solution exists if you just want content:
// Get element content:
// Returns: cookie, donut, muffin
string[] items = selenium.GetSelectOptions("//select[@id='bakedgoods']");