I need to find some way to find object from html file using Xpath or Html Selectors.
Since selectors are not supported in Html Agility Pack, I'm trying to use XPath.
Unfortunately it seems like SelectSingleNode(string somexpathvalue) is not available on Xamarin Forms. HtmlNode does not contain a definition of it.
I found in NuGet that I haven't got System.Xml.XPath installed. When I try to do it, I see an error:
Severity Code Description Project File Line Suppression State Error Could not install package 'System.Xml.XPath 4.0.0'. You are trying to install this package into a project that targets '.NETPortable,Version=v4.5,Profile=Profile111', but the package does not contain any assembly references or content files that are compatible with that framework. For more information, contact the package author. 0
Is there any way I could use SelectSingleNode without System.Xml.Xpath?