diff --git a/test/test_utils.py b/test/test_utils.py index e8ef15e016..896cf9f32c 100644 --- a/test/test_utils.py +++ b/test/test_utils.py @@ -1846,7 +1846,7 @@ Line 1 random text lorem ipsum

this should be returned - this should also be returned + this should also be returned
this should also be returned
@@ -1859,10 +1859,6 @@ Line 1 GET_ELEMENT_BY_TAG_RES_INNERSPAN_HTML = GET_ELEMENT_BY_TAG_TEST_STRING.strip()[78:119] GET_ELEMENT_BY_TAG_RES_INNERSPAN_TEXT = GET_ELEMENT_BY_TAG_RES_INNERSPAN_HTML[6:-7] - GET_ELEMENT_BY_TAG_TEST_STRING_UPPERCASE = ''' - nice - ''' - def test_get_element_text_and_html_by_tag(self): html = self.GET_ELEMENT_BY_TAG_TEST_STRING @@ -1872,14 +1868,11 @@ Line 1 self.assertEqual( get_element_text_and_html_by_tag('span', html), (self.GET_ELEMENT_BY_TAG_RES_INNERSPAN_TEXT, self.GET_ELEMENT_BY_TAG_RES_INNERSPAN_HTML)) - - self.assertRaises(compat_HTMLParseError, get_element_text_and_html_by_tag, 'article', html) - - html = self.GET_ELEMENT_BY_TAG_TEST_STRING_UPPERCASE - self.assertEqual( get_element_text_and_html_by_tag('SPAN', html), - ('nice', html.strip()), html) + (self.GET_ELEMENT_BY_TAG_RES_INNERSPAN_TEXT, self.GET_ELEMENT_BY_TAG_RES_INNERSPAN_HTML)) + + self.assertRaises(compat_HTMLParseError, get_element_text_and_html_by_tag, 'article', html) def test_iri_to_uri(self): self.assertEqual( diff --git a/yt_dlp/utils/_utils.py b/yt_dlp/utils/_utils.py index 9aae60584d..d600a522a8 100644 --- a/yt_dlp/utils/_utils.py +++ b/yt_dlp/utils/_utils.py @@ -430,10 +430,14 @@ def get_element_text_and_html_by_tag(tag, html): return its' content (text) and the whole element (html) """ def find_or_raise(haystack, needle, exc): - try: + with contextlib.suppress(ValueError): return haystack.index(needle) - except ValueError: - raise exc + + with contextlib.suppress(ValueError): + return haystack.index(needle.upper()) + + raise exc + closing_tag = f'' whole_start = find_or_raise( html, f'<{tag}', compat_HTMLParseError(f'opening {tag} tag not found'))