Forum Discussion

Shwetali's avatar
Shwetali
New Contributor
2 years ago
Solved

assert in groovy fails because of spaces in response and no spaces in database value .Is there any s

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 ...
  • KarelHusa's avatar
    2 years ago

    Shwetali,

    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()