I need a HTML scraper or a DOM editor. I know the question has been asked many times, and the answer is HTML agility pack. But it doesn't look any good to me. I tried to removed a simple form element, but it removed only the <form>
tag and leaved all other tags inside it, also it leaved the </form>
tag. I used the PHP Simple HTML DOM Parser, and it works amazingly brilliant, the only problem, I need something on client side. Is there any other options in C#, as HTML agility pack is no good with no documentation. I don't need any outdated library, which is not been worked on.
foreach (HtmlNode link in doc.DocumentNode.SelectNodes("//form"))
link.Remove();
Also is there any other options, like how can I use the Python Beautiful Soup with C# client. Also I am looking for something simple jquery like syntax and not XPATH, like the PHP Simple HTML DOM Parser.