Currently I am dealing with an HtmlDocument in c# from a website:
return doc.DocumentNode.SelectSingleNode("//span[@title=input]").InnerText;
I want to get the inner text from a span with the title "input". Above is my current code but I receive a NullReferenceException when trying to run it. What should my implicit parameter be in order to retrieve the text from "input"?