robotframework / SeleniumLibrary

Web testing library for Robot Framework
Apache License 2.0
1.38k stars 759 forks source link

fixed type hinting so that it is not converted to str #1866

Closed Snooz82 closed 10 months ago

Snooz82 commented 10 months ago

The problem was that the type hint str did convert everything to string. So a dictionary {'key': 'value'} does become "{'key': 'value'}" and this is then put to json.dumps That obviously is then not a js object anymore.

Added tests as well.

Snooz82 commented 10 months ago

fixes #1843