当前位置: 首页>>代码示例>>Python>>正文


Python html.HTMLParseError方法代码示例

本文整理汇总了Python中django.test.html.HTMLParseError方法的典型用法代码示例。如果您正苦于以下问题:Python html.HTMLParseError方法的具体用法?Python html.HTMLParseError怎么用?Python html.HTMLParseError使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在django.test.html的用法示例。


在下文中一共展示了html.HTMLParseError方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: assert_and_parse_html

# 需要导入模块: from django.test import html [as 别名]
# 或者: from django.test.html import HTMLParseError [as 别名]
def assert_and_parse_html(self, html, user_msg, msg):
    try:
        dom = parse_html(html)
    except HTMLParseError as e:
        standardMsg = '%s\n%s' % (msg, e.msg)
        self.fail(self._formatMessage(user_msg, standardMsg))
    return dom 
开发者ID:lanbing510,项目名称:GTDWeb,代码行数:9,代码来源:testcases.py

示例2: assert_and_parse_html

# 需要导入模块: from django.test import html [as 别名]
# 或者: from django.test.html import HTMLParseError [as 别名]
def assert_and_parse_html(self, html, user_msg, msg):
    try:
        dom = parse_html(html)
    except HTMLParseError as e:
        standardMsg = '%s\n%s' % (msg, e)
        self.fail(self._formatMessage(user_msg, standardMsg))
    return dom 
开发者ID:reBiocoder,项目名称:bioforum,代码行数:9,代码来源:testcases.py

示例3: test_parsing_errors

# 需要导入模块: from django.test import html [as 别名]
# 或者: from django.test.html import HTMLParseError [as 别名]
def test_parsing_errors(self):
        with self.assertRaises(AssertionError):
            self.assertHTMLEqual('<p>', '')
        with self.assertRaises(AssertionError):
            self.assertHTMLEqual('', '<p>')
        error_msg = (
            "First argument is not valid HTML:\n"
            "('Unexpected end tag `div` (Line 1, Column 6)', (1, 6))"
        )
        with self.assertRaisesMessage(AssertionError, error_msg):
            self.assertHTMLEqual('< div></ div>', '<div></div>')
        with self.assertRaises(HTMLParseError):
            parse_html('</p>') 
开发者ID:nesdis,项目名称:djongo,代码行数:15,代码来源:tests.py


注:本文中的django.test.html.HTMLParseError方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。