Hi,
I’m having a situation where my CV element exist should Ignore the case of the text that is present on screen and just check the value.
Is there a property that I can use for getting through this scenario
Hi,
I’m having a situation where my CV element exist should Ignore the case of the text that is present on screen and just check the value.
Is there a property that I can use for getting through this scenario
Adding Accuracy will increase the case sensitivity
if you add accuracy you can give a value between 0 to 1…1 is exact match give soemthing like 0.7
cheers
you can ignore case, but not directly from the activity properties because CV always does visual OCR-based text comparison.
Extract the text from the UI element and convert to lowercase and compare.
eg : cvText.ToLower.Contains(targetText.ToLower)
You can also Ignore case using regex-like approach
Eg text is “Approve”, use like below
(?i)approve