We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent accb300 commit 0e4a981Copy full SHA for 0e4a981
py/selenium/webdriver/firefox/firefox_profile.py
@@ -357,6 +357,11 @@ def get_text(element):
357
entry = node.nodeName.replace(em, "")
358
if entry in details.keys():
359
details.update({entry: get_text(node)})
360
+ if details.get('id') is None:
361
+ for i in range(description.attributes.length):
362
+ attribute = description.attributes.item(i)
363
+ if attribute.name == em + 'id':
364
+ details.update({'id': attribute.value})
365
except Exception as e:
366
raise AddonFormatError(str(e), sys.exc_info()[2])
367
0 commit comments