I am implementing a ready api project in which I have to compare two JSON objects.
Say Obj1 = {"A":"Test1","B:"Test2"}
is an input.
I have a regular expression inside the script file in which I have
Obj = '''{"A":".*","B":".*"}'''
and I tried to do assert obj1 == obj
which didn't work.
Could some one tell me if script file in ReadyAPI doesn't support regular expression in such format?