I am trying to get the InnerText of a particular node with the following xpath
/html/body/center/table/tbody/tr[5]/td[3]/font/font/span
by using the following
doc.DocumentNode.SelectSingleNode("/html/body/center/table/tbody/tr[5]/td[3]/font/font/span").InnerText
But instead it is returning me the InnerText with the following xpath
/html/body/center/form/table/tbody/tr[5]/td[3]/font/font/span
Am I making any mistake? Do I have to be more specific with the Xpath? If so, please help me by specifying how to be more specific.