我正在尝试使用此flutter包web_scraper:^0.1.4从网页抓取特定链接("https://mobohng.com/breaking-lol-sit-at-home-order-grounds-again/")。下面是我要抓取的链接的html格式:
<h3 class="entry-title"><a href="https://mobohng.com/breaking-lol-sit-at-home-order-grounds-again/">This is the way it goes again again</a></h3>
以下是我到目前为止所做的尝试:
List<Map<String, dynamic>> elementsUrl = webScraper.getElement('h3.entry-title > a.href', ['href']);
问题是,我得到一个空结果。我的问题是我做错了什么?任何帮助都将不胜感激。由于
尝试:
List<Map<String, dynamic>> elementsUrl;
elementUrl = webScraper.getElement('h3.entry-title > a', ['href']);