robotframework-jsonlibrary icon indicating copy to clipboard operation
robotframework-jsonlibrary copied to clipboard

Robotframework Test Library to manipulate JSON using JSONPath

Results 11 robotframework-jsonlibrary issues
Sort by recently updated
recently updated
newest added

Function convert_json_to_string returns wrong encoding if you use UTF-8. I have workaround: ` @staticmethod def convert_json_to_string(json_object): """Convert JSON object to string Arguments: - json_object: json as a dictionary object. Return...

Forward ensure_ascii to json.dumps and add parameter ensure_ascii to the arguments of "Convert Json To String". Possible workaround for: https://github.com/robotframework-thailand/robotframework-jsonlibrary/issues/59

Hi, I believe there is a small issue with the function add_object_to_json. In line 132 of jsonlibrary.py, it should be... match.value.update({child_name: object_to_add_cpy[child_name]}) Currently, the function is adding the whole object...

How about adding another json query specification language to be handled by this library? I'm thinking of something like: ``` *** Settings *** Library JsonLibrary # by default it will...

removed tox + remake GH workflows

It looks like Travis CI is not used any more for validating and delivering this repo. The company behind Travis CI stop supporting open source projects. See here https://www.reddit.com/r/linux/comments/k92tc0/travis_is_no_longer_free_for_opensource_projects/ A...

help wanted
in progress

I have the idea to add more return type to the keyword Get Value From JSON. Because what it return is not a JSON, this optonial parameter would let you...

enhancement

## How to reproduce Use JSON data (`bookstore.json`) and RF test case (`bookstore.robot`) from issue #7 but replace test case with this one: ```robotframework Get the first two books Get...

Bug in dependencies

PREREQUISITE: You have installed JSONLibrary -- > `pip install robotframework-jsonlibrary` ## How to reproduce 1. create file `bookstore.robot` with following content ```robotframework *** Settings *** Library JSONLibrary Suite Setup BEFORE...

Bug in dependencies

my json exp: `$.[?(@.bundle_id=='10')].oper_status` my jsonobject is: ``` { "number_of_lag_in_use": 2, "number_of_aggregators": 2, "interfaces": { "Port-channel10": { "name": "Port-channel10", "bundle_id": 10, "protocol": "lacp", "flags": "SU", "oper_status": "up", "members": { "TenGigabitEthernet1/0/39":...

Bug in dependencies