I am trying to select a divs, spans, labels, etc basically any element with a certain attribute....IEnumerable<HtmlNode> allDivsWithItemType = _doc.DocumentNode.Descendants("div").Where(d => d.Attributes.Contains("itemtype"));
...Is there a way to rope al...