コード例 #1
0
ファイル: Browser.cs プロジェクト: Asim-Rana/WebScrapper
        internal IEnumerable <dynamic> GetCQHTMLElementCollection(HtmlSelector selector)
        {
            string parentSelectorValue = selector.selectorValue;
            string parentSelectorType  = Convert.ToString(selector.selectBy);

            return(DomService.GetCQHTMLElementCollection(parentSelectorValue, parentSelectorType));
        }