[Solved] Key error u’True when checking for a value in JSON dump stored in python dictionary

The first rule of debugging is to assume that the error message is telling you the truth. In this case it is telling you keyerror u’True. This means that somewhere in your code you’re doing the equivalent of some_dictionary[u’True’]. In the code you posted, there is nothing that is using the literal value True as … Read more

[Solved] List output are not getting recognize for custom library in robotframework when json library is used and list is mix with unicode character

The problem was when you pass the ${compare} variable from robotframework to python function , it was going as unicode string so the comaprison was some thing like this ([30, 40, 30], u’30’) u’30’ was not going to be found in the list that is ${Value}. so i have converted the string passed from robotframework … Read more