Rainmanwy

Results 177 comments of Rainmanwy

hi, @marcuswongkl , there is command in the log `java -jar C:\Test_Automation\jython2.7.1\Lib\site-packages\SikuliLibrary\lib\SikuliLibrary.jar 51248 C:\Test_Automation\KYC\ICN3` you may start the process in the command-line manually, and check the error.

You may execute python code like below to test it after java process is started. ``` from robot.libraries.Remote import Remote r = Remote('http://127.0.0.1:51248/') r.get_keyword_names() r.run_keyword('add_image_path', ['d:\\'], {}) r.run_keyword('click', ['image.png'], {})...

@marcuswongkl , sorry for reply late. So you execute script in python interpreter on the windows server 2016? From the console, we could see the error is because it could...

@marcuswongkl , btw, you may run robot test cases with "-L trace", there are more details in log files..

@wuzw-91 , you may have a try [this method](https://github.com/rainmanwy/robotframework-SikuliLibrary/issues/123#issuecomment-608204535)

could you attach sikuli log file, it could helpful to find the problem. And how about jdk version in your environment? and could you have a try to start sikuli...

@Nmzb , as it reported, keyword could not find the matched region.

@VijayAnanthP , could you attach log.html and sikuli console log file.

@mevangulf , how "SikuliLibrary" is imported? I found that you call "Start Sikuli Process" in step, Do you use [NEW MODE](https://github.com/rainmanwy/robotframework-SikuliLibrary#new-mode) in your robot case? @veena-anup , how about the...

@SudPiva , so in your environment, "wantedImage" and "notWantedImage" may exist at the same time, right? I think "wantedImage" and "notWantedImage" are mutex each other, so when keyword find "wantedImage"...