New question #685866 on Sikuli: https://answers.launchpad.net/sikuli/+question/685866
pre-reqs: selenium 3.141 in Java sikulixapi 2.0.0 jar tess4j-4.4.1 jar background: Step1: get a screenshot of element from selenium, store it as png Output: image is captured good Step2: read text from captured png using bufferedimage and textrecognizer class Output: Texts are read correctly from captured image Step3: perform action on text using sikuli. consider two texts with same characters 'Password' and 'password' (notice p here) Expected: perform action on 'Password' Actual: performs action on 'password' (incorrect element clicked) //sikuli instantiated as below Region s = new Screen(0); Settings.OcrTextRead=true; Settings.OcrTextSearch=true; Settings.MinSimilarity = 0.9; String text = callScanImageocr(); //method to read text from a png file as mentioned in step 2 and it returns 'Password' correctly. s.findText(text).click(); Please suggest and correct me if anything is wrong. -- You received this question notification because your team Sikuli Drivers is an answer contact for Sikuli. _______________________________________________ Mailing list: https://launchpad.net/~sikuli-driver Post to : [email protected] Unsubscribe : https://launchpad.net/~sikuli-driver More help : https://help.launchpad.net/ListHelp

