diff options
author | 2019-07-01 14:33:37 -0400 | |
---|---|---|
committer | 2019-07-01 14:39:14 -0400 | |
commit | 03dadb9b9ce5c8386079bd47c54cde17f39382c4 (patch) | |
tree | 2f8336ef5c6427c7b958181a8fe3f21ab5cec3e5 /robotframework-onap/ONAPLibrary/JSON.py | |
parent | 205db3c1a955f9e96776019deb2922fd208557a7 (diff) |
support json path searching
Issue-ID: TEST-172
Change-Id: Id5a355ca0148efb97065c0a5aacd53ddfd11818d
Signed-off-by: DR695H <dr695h@att.com>
Diffstat (limited to 'robotframework-onap/ONAPLibrary/JSON.py')
-rw-r--r-- | robotframework-onap/ONAPLibrary/JSON.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/robotframework-onap/ONAPLibrary/JSON.py b/robotframework-onap/ONAPLibrary/JSON.py index 6eb1e65..1cb67dd 100644 --- a/robotframework-onap/ONAPLibrary/JSON.py +++ b/robotframework-onap/ONAPLibrary/JSON.py @@ -14,6 +14,7 @@ from ONAPLibrary.robotlibcore import HybridCore from ONAPLibrary.JSONKeywords import JSONKeywords +from ONAPLibrary.JSONPathKeywords import JSONPathKeywords class JSON(HybridCore): @@ -22,6 +23,7 @@ class JSON(HybridCore): def __init__(self): self.keyword_implementors = [ - JSONKeywords() + JSONKeywords(), + JSONPathKeywords() ] HybridCore.__init__(self, self.keyword_implementors) |