Lower-case WebEngineElement.tag_name() correctly

This commit is contained in:
Florian Bruhin 2016-08-09 15:19:38 +02:00
parent 2d48a8013f
commit 9f770adc78

View File

@ -91,7 +91,7 @@ class WebEngineElement(webelem.AbstractWebElement):
The returned name will always be lower-case.
"""
return self._js_dict['tag_name']
return self._js_dict['tag_name'].lower()
def outer_xml(self):
"""Get the full HTML representation of this element."""