Test Data Manager

 View Only
Expand all | Collapse all

'not like' not available in Javelin If element?

  • 1.  'not like' not available in Javelin If element?

    Posted May 14, 2019 08:54 AM

    In Javelin I would like to use a 'not like' condition in an If element. For example: varDatabase not like "*temp*"

    Javelin does not allow this syntax. A normal 'like' however is accepted and works fine along with the asterisk (*) character. Is there another way to form a 'not like'?



  • 2.  Re: 'not like' not available in Javelin If element?
    Best Answer

    Posted May 14, 2019 09:08 PM

    not (varDatabase like “temp”)  ?



  • 3.  Re: 'not like' not available in Javelin If element?

    Posted May 15, 2019 01:17 AM

    Thank you James! It works fine. I was not aware that I could use such a construction.