Hi all
I am new to UiPath May i know is there any way to ignore the case while selecting the dropdown.In my Excelfile i have the items like Unicare,Healthcare,Cigma but in my dropdown i have items like UNICARE,Healthcare,CIGMA.I did it by using SelectItem but it throwing an exception like “can not select item.it was not found among existing items”.It may be because of uppercase and lowercase so kindly let me know how to ignore the case in Uipath
If you are trying to select item from drop down list using Select Item Activity and it should be case sensitive. Otherwise it won’t select item from the list.
We can’t ignore case here. It is either upper or lower case then as @Ellboy said use Try Catch block. In Try block, pass lower case one. If error occurs in Try block then it will come to Catch block here you pass upper case letter.