Loosen JS value type check

This commit is contained in:
Florian Bruhin 2017-04-28 14:57:14 +02:00
parent 0c653c4703
commit 571f0c4486

View File

@ -43,7 +43,7 @@ class WebEngineElement(webelem.AbstractWebElement):
js_dict_types = {
'id': int,
'text': str,
'value': str,
'value': (str, int, float),
'tag_name': str,
'outer_xml': str,
'class_name': str,