I want to make a simple webpage "reader" app (absolutely not a viewer), that just needs to store the inside of some html elements in a variabile, and the page should never be visible to users.
With System.Windows.Forms, I'm able to do this thanks to WebBrowser control, using methods like Document.GetElementsByTagName(), but I can't find a good equivalent for Xamarin.Android. I'm aware of the existence of WebView control, but I don't really know if it's suitable for my situation as I have always seen it being used like a page visualizator.
Perhaps something will not be clear, in that case just let me know, and I will try to explain better. Thank you!