Any property to use for ignoring case sensitivity

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

@Babjee.Vangipurapu

add an accuracy attribute to cv selector and check if that helps

cheers

Adding Accuracy will increase the case sensitivity

@Babjee.Vangipurapu

if you add accuracy you can give a value between 0 to 1…1 is exact match give soemthing like 0.7

cheers

@Babjee.Vangipurapu

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