本文整理汇总了Python中Crawler.Crawler._process_html_link方法的典型用法代码示例。如果您正苦于以下问题:Python Crawler._process_html_link方法的具体用法?Python Crawler._process_html_link怎么用?Python Crawler._process_html_link使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Crawler.Crawler
的用法示例。
在下文中一共展示了Crawler._process_html_link方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test__process_html_link
# 需要导入模块: from Crawler import Crawler [as 别名]
# 或者: from Crawler.Crawler import _process_html_link [as 别名]
def test__process_html_link(self):
c = Crawler("http://test.com")
soup = BeautifulSoup(self.html_test_string)
for link in soup.find_all("a"):
c._process_html_link(link, "/")
self.assertEqual(len(c.sitemap.nodes()), 3)
self.assertEqual(len(c.sitemap.edges()), 2)
self.assertEqual(len(c.process_q), 3)
示例2: test__process_html
# 需要导入模块: from Crawler import Crawler [as 别名]
# 或者: from Crawler.Crawler import _process_html_link [as 别名]
def test__process_html(self):
soup = BeautifulSoup(self.html_test_string)
c = Crawler("http://test.com")
c._process_html_asset = mock.Mock()
c._process_html_link = mock.Mock()
c._process_html(soup)
self.assertEqual(c._process_html_asset.call_count, 3)
self.assertEqual(c._process_html_link.call_count, 4)