In my process I have to search a place, once I search the place a separate screen appears to enter a name. IF that name already exist a message above the ‘Type Into’ textbox will appear saying “Name already exists”, if the name does not exist it will continue with the process.
I have a Get Text for “Name already exists” output value = strError
For my IF statement I’ve used:
- strError.Contains(“Name already exists”)
- strError.Contains(“already”)
- strError.Equals(“Name already exists”)
When the process is either true or false it always completes the ‘Else’ set of processes and never the ‘Then’. Any ideas as to why?