ContributionsMost RecentMost LikesSolutionsRe: Contain assertion - how can I 'blank out' a part of element text which changes with every response Hi arunbharath No unfortunately that doesnt work either. There are many numbers in my response but if i just create a contain-assertion with [1-9] it fails. Also if i check the box 'Use token as regular expression'. Re: Contain assertion - how can I 'blank out' a part of element text which changes with every response Hi Rao, Thanks for the quick reply, appreciate your time. But how would that work in my example if i want to use the regular expressions? For example, apparently a dot should match any character or \d should match any digit. But if i do the following it doesn't work: Response: <ns1:RandomNumber>234</ns1:RandomNumber> Contain Assertion: <ns1:RandomNumber>...</ns1:RandomNumber> or <ns1:RandomNumber>\d\d\d</ns1:RandomNumber> Contain assertion - how can I 'blank out' a part of element text which changes with every response Hello fellow soap users, I am building a regression test. And the easiest way is ofcourse to make one contain-assertion of the complete response. However, there are elements that change everytime I execute. For example: <ns1:RandomNumber>234</ns1:RandomNumber> Is there I way I can validate if the response contains something like: <ns1:RandomNumber>XXX</ns1:RandomNumber> With the XXX that 'blank out' that part of the validation. So it only checks the presence of the positions, and not what it actually says there? Kind regards Solved