Question: Given the following XML fragment, what XPath expression would select the third option element in the select element with a name attribute of color? /form/select[@name=color]/@option[3]

Given the following XML fragment, what XPath expression would select the third "option" element in the "select" element with a "name" attribute of "color"? /form/select[@name="color"]/@option[3] /form/select[3]/option /form/select[@name="color"][3]/option /form/select[@name="color"]/option[3]
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
