Forum Discussion
Related Content
- 12 years ago
- 12 years ago
Recent Discussions
- 5 days ago
in groovy script -comparing soap response with database
values are same but it fails when I asserting it because of spaces in response's data.
error like assertion failed
responseid==dbtableid
|. ||
'23' |23
false
error at line 27
Is there any solution?
you need to make sure you compare the same data types (i.e., both are strings or integers).
To get rid of the whitespaces at the beginning and the end strings you can use the trim() method:
myString.trim()