[Sikuli-driver] [Question #698669]: How to install keras-ocr python module to use in sikulix?

2021-09-08 Thread Ashish Sah
New question #698669 on SikuliX:
https://answers.launchpad.net/sikuli/+question/698669

I want to install keras-ocr python module and use it with sikulix. please 
someone suggest me a way to do that :)

-- 
You received this question notification because your team Sikuli Drivers
is an answer contact for SikuliX.

___
Mailing list: https://launchpad.net/~sikuli-driver
Post to : sikuli-driver@lists.launchpad.net
Unsubscribe : https://launchpad.net/~sikuli-driver
More help   : https://help.launchpad.net/ListHelp


Re: [Sikuli-driver] [Question #696128]: Mouse: not useable (blocked) in remote machine

2021-05-27 Thread Ashish Rnjan
Question #696128 on SikuliX changed:
https://answers.launchpad.net/sikuli/+question/696128

Ashish Rnjan posted a new comment:
Just putting here, I am sure that it has nothing to do with my local(mac) 
machine, because when I executed from another local machine(Windows) then also, 
I am getting same error.
About this windows local machine, on this machine same code/jar works pretty 
great.

-- 
You received this question notification because your team Sikuli Drivers
is an answer contact for SikuliX.

___
Mailing list: https://launchpad.net/~sikuli-driver
Post to : sikuli-driver@lists.launchpad.net
Unsubscribe : https://launchpad.net/~sikuli-driver
More help   : https://help.launchpad.net/ListHelp


Re: [Sikuli-driver] [Question #696128]: Mouse: not useable (blocked) in remote machine

2021-05-27 Thread Ashish Rnjan
Question #696128 on SikuliX changed:
https://answers.launchpad.net/sikuli/+question/696128

Ashish Rnjan posted a new comment:
Facing same issue.
I am using Mac machine: macOS Catalina(10.15.7) and my remote machine which is 
vmware Windows 10 machine.
Trying to remote access and execute the script(which is compiled in jar.)

When I execute it directly on vmware Windows machine, it works good.
But when I try from my local(mac) machine, I am getting below error:
[error] Mouse: not useable (blocked)
|  Ran into exception

-- 
You received this question notification because your team Sikuli Drivers
is an answer contact for SikuliX.

___
Mailing list: https://launchpad.net/~sikuli-driver
Post to : sikuli-driver@lists.launchpad.net
Unsubscribe : https://launchpad.net/~sikuli-driver
More help   : https://help.launchpad.net/ListHelp


Re: [Sikuli-driver] [Question #662004]: Getting error Region.text: text recognition is currently switched off

2017-12-20 Thread ashish
Question #662004 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/662004

Status: Answered => Open

ashish is still having a problem:
Thanks for response.

I put the code as you have given above but apologize for my limited java 
knowledge the line Settings.OcrTextRead=true; gives error and is giving error 
as 'Settings.OcrTextRead cannot be resolved to a type' and suggesting solutions 
like
1) create a class Settings
2) create an interface Settings.

Please help as what to do.

I am trying to use OCR as opposed to Apache POI as I have to read data
from both an XLS file and a PDF

-- 
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 : sikuli-driver@lists.launchpad.net
Unsubscribe : https://launchpad.net/~sikuli-driver
More help   : https://help.launchpad.net/ListHelp


[Sikuli-driver] [Question #662010]: Class path Dump error

2017-12-20 Thread ashish
New question #662010 on Sikuli:
https://answers.launchpad.net/sikuli/+question/662010

Hi
I am running a small program 
public static void main(String[] args) throws FindFailed, InterruptedException {
Screen screen = new Screen();
Thread.sleep(5000);
Region r = 
screen.find("C:\\Users\\KHANDELA1\\Pictures\\AssetName_excel.PNG").below(20);
screen.hover(r);
String read = r.text(); 
System.out.println("read"+read);

using sikulixapi.jar from sikulixsetup1.1.1.jar but I am getting the below error
*** classpath dump 
  0: /C:/Users/KHANDELA1/workspace/DAMRegression/bin/
  1: /C:/Users/KHANDELA1/Documents/Jars%20for%20Ant/cucumber-jvm-deps-1.0.3.jar
  2: /C:/Users/KHANDELA1/Documents/Jars%20for%20Ant/cucumber-reporting-0.1.0.jar
  3: /C:/Users/KHANDELA1/Documents/Jars%20for%20Ant/gson-2.3.1.jar
  4: /C:/Users/KHANDELA1/Documents/Jars%20for%20Ant/gson-2.8.0.jar

26: /C:/Users/KHANDELA1/Documents/jar/sikulli/sikulixapi.jar
*** classpath dump end
[error] RunTimeINIT:  *** terminating: libs to export not found on above 
classpath: /sikulixlibs/windows/libs64

Please help to resolve this 

Also when I am running the setup with option 3 (OCR) also checked I get the pop 
up that trying to extract from: tesseract-ocr-3.02.eng.tar.gz but nothing 
happens after that

Please help

-- 
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 : sikuli-driver@lists.launchpad.net
Unsubscribe : https://launchpad.net/~sikuli-driver
More help   : https://help.launchpad.net/ListHelp


[Sikuli-driver] [Question #662004]: Getting error Region.text: text recognition is currently switched off

2017-12-20 Thread ashish
New question #662004 on Sikuli:
https://answers.launchpad.net/sikuli/+question/662004

I have written a small code to read a text from an excel file but getting error

Code : public static void main(String[] args) throws FindFailed, 
InterruptedException {
Screen screen = new Screen();
Thread.sleep(5000);
Region r = 
screen.find("C:\\Users\\KHANDELA1\\Pictures\\AssetName_excel.PNG").below(20);
screen.hover(r);
String read = r.text(); 
System.out.println("read"+read); 

Error : [error] Region.text: text recognition is currently switched off
read--- no text ---

The solutions which i found are asking to set  Settings.OcrTextRead=true .

But where exactly do I set this in the code. I set in my java code in eclipse 
it gives the error.

Please help

-- 
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 : sikuli-driver@lists.launchpad.net
Unsubscribe : https://launchpad.net/~sikuli-driver
More help   : https://help.launchpad.net/ListHelp


Re: [Sikuli-driver] [Question #661586]: Unable to import xlrd: Syntax error

2017-12-11 Thread Ashish
Question #661586 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/661586

Status: Needs information => Open

Ashish gave more information on the question:
Sikuli works fine as such.

I need xlrd to read data from excel (.xls).

I am running it on Win7.

Sorry to ask silly question but what is the syntax error in Line 397 of
"__init__.py" file.

-- 
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 : sikuli-driver@lists.launchpad.net
Unsubscribe : https://launchpad.net/~sikuli-driver
More help   : https://help.launchpad.net/ListHelp


[Sikuli-driver] [Question #661586]: Unable to import xlrd: Syntax error

2017-12-11 Thread Ashish
New question #661586 on Launchpad itself:
https://answers.launchpad.net/launchpad/+question/661586

Unable to import xlrd: Syntax error

Error Message:
[error] script [ Untitled ] stopped with error in line 1
[error] SyntaxError ( ('no viable alternative at input \'"PK\\x03\\x04"\'', 
('C:\\Users\\abcd\\Documents\\SikuliX\\sikulix.jar\\Lib\\xlrd\\__init__.py', 
397, 16, ' if peek == b"PK\\x03\\x04": # a ZIP file\n')) )


I am using the following versions:
Sikulix 1.1.0
jython-standalone-2.5.4-rc1.jar
Java6

Limitations: i cannot upgrade the java as it is restricted by my admin.

xlrd folder is SikuliX/Libs

Please suggest some workaround as i am new to sikuli and unable to proceed:(


-- 
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 : sikuli-driver@lists.launchpad.net
Unsubscribe : https://launchpad.net/~sikuli-driver
More help   : https://help.launchpad.net/ListHelp


Re: [Sikuli-driver] [Question #661586]: Unable to import xlrd: Syntax error

2017-12-11 Thread Ashish
Question #661586 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/661586

Project: Launchpad itself => Sikuli

-- 
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 : sikuli-driver@lists.launchpad.net
Unsubscribe : https://launchpad.net/~sikuli-driver
More help   : https://help.launchpad.net/ListHelp


[Sikuli-driver] [Question #638577]: Sikulli screen.click() how to give the region where to click

2017-06-01 Thread ashish
New question #638577 on Sikuli:
https://answers.launchpad.net/sikuli/+question/638577

Hi 

I am trying to perform the click() through sikulli. I have captured the image 
and I am doing it like below

Pattern image1 = new 
Pattern("C:\\Users\\KHANDELA1\\Pictures\\DAM_Username.PNG");
screen.click(image1)

But the image has radio button and some text and I only want to click on the 
radio button. I want to know how to click on particular area or pixels on the 
image.



-- 
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 : sikuli-driver@lists.launchpad.net
Unsubscribe : https://launchpad.net/~sikuli-driver
More help   : https://help.launchpad.net/ListHelp


Re: [Sikuli-driver] [Question #269246]: Sikuli -ide crashes while taking screen shot

2015-07-16 Thread Ashish
Question #269246 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/269246

Status: Solved = Open

Ashish is still having a problem:
Sikuli 1.1.0 is installed but from where I have to run the Sikuli ide

Thanks
Ashish

-- 
You received this question notification because you are a member of
Sikuli Drivers, which is an answer contact for Sikuli.

___
Mailing list: https://launchpad.net/~sikuli-driver
Post to : sikuli-driver@lists.launchpad.net
Unsubscribe : https://launchpad.net/~sikuli-driver
More help   : https://help.launchpad.net/ListHelp


Re: [Sikuli-driver] [Question #269246]: Sikuli -ide crashes while taking screen shot

2015-07-16 Thread Ashish
Question #269246 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/269246

Status: Answered = Solved

Ashish confirmed that the question is solved:
Thanks RaiMan, that solved my question.

-- 
You received this question notification because you are a member of
Sikuli Drivers, which is an answer contact for Sikuli.

___
Mailing list: https://launchpad.net/~sikuli-driver
Post to : sikuli-driver@lists.launchpad.net
Unsubscribe : https://launchpad.net/~sikuli-driver
More help   : https://help.launchpad.net/ListHelp


Re: [Sikuli-driver] [Question #269246]: Sikuli -ide crashes while taking screen shot

2015-07-16 Thread Ashish
Question #269246 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/269246

Status: Answered = Open

Ashish is still having a problem:
While running runsikulix.cmd this cmd is coming for just 2 seconds

while running sikulix.jar nothing is coming

Thanks
Ashish

-- 
You received this question notification because you are a member of
Sikuli Drivers, which is an answer contact for Sikuli.

___
Mailing list: https://launchpad.net/~sikuli-driver
Post to : sikuli-driver@lists.launchpad.net
Unsubscribe : https://launchpad.net/~sikuli-driver
More help   : https://help.launchpad.net/ListHelp


Re: [Sikuli-driver] [Question #269246]: Sikuli -ide crashes while taking screen shot

2015-07-16 Thread Ashish
Question #269246 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/269246

Status: Answered = Solved

Ashish confirmed that the question is solved:
Thanks RaiMan, that solved my question.

-- 
You received this question notification because you are a member of
Sikuli Drivers, which is an answer contact for Sikuli.

___
Mailing list: https://launchpad.net/~sikuli-driver
Post to : sikuli-driver@lists.launchpad.net
Unsubscribe : https://launchpad.net/~sikuli-driver
More help   : https://help.launchpad.net/ListHelp


Re: [Sikuli-driver] [Question #269246]: Sikuli -ide crashes while taking screen shot

2015-07-15 Thread Ashish
Question #269246 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/269246

Ashish posted a new comment:
Hi

Please help me out for this I need it urgently.

Thanks
Ashish

-- 
You received this question notification because you are a member of
Sikuli Drivers, which is an answer contact for Sikuli.

___
Mailing list: https://launchpad.net/~sikuli-driver
Post to : sikuli-driver@lists.launchpad.net
Unsubscribe : https://launchpad.net/~sikuli-driver
More help   : https://help.launchpad.net/ListHelp


[Sikuli-driver] [Question #269246]: Sikuli -ide crashes while taking screen shot

2015-07-15 Thread Ashish
New question #269246 on Sikuli:
https://answers.launchpad.net/sikuli/+question/269246

While clicking on any button Sikuli-ide crashes 
I am using Windows 8 (32 bit) and java 6 is installed by me.
I tried both versions Sikuli-r930-win32 and Sikuli-X-1.0rc3 (r905)-win32.Please 
help me out its very urgent.

Thanks
Ashish 

-- 
You received this question notification because you are a member of
Sikuli Drivers, which is an answer contact for Sikuli.

___
Mailing list: https://launchpad.net/~sikuli-driver
Post to : sikuli-driver@lists.launchpad.net
Unsubscribe : https://launchpad.net/~sikuli-driver
More help   : https://help.launchpad.net/ListHelp


Re: [Sikuli-driver] [Question #265219]: Can Sikuli be used with Jython 2.5.3

2015-04-27 Thread Ashish
Question #265219 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/265219

Status: Answered = Solved

Ashish confirmed that the question is solved:
Thanks a lot RaiMan.
Your solution resolved my problem.
Though I wasn't able to get it running on command-line, but I installed Ecilpse 
and PyDev and followed the steps stated in Sikuli doc and it is running 
perfectly well.
Thank!

Apologies for the late reply

-- 
You received this question notification because you are a member of
Sikuli Drivers, which is an answer contact for Sikuli.

___
Mailing list: https://launchpad.net/~sikuli-driver
Post to : sikuli-driver@lists.launchpad.net
Unsubscribe : https://launchpad.net/~sikuli-driver
More help   : https://help.launchpad.net/ListHelp


Re: [Sikuli-driver] [Question #265219]: Can Sikuli be used with Jython 2.5.3

2015-04-27 Thread Ashish
Question #265219 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/265219

Ashish confirmed that the question is solved:
Thanks RaiMan, that solved my question.

-- 
You received this question notification because you are a member of
Sikuli Drivers, which is an answer contact for Sikuli.

___
Mailing list: https://launchpad.net/~sikuli-driver
Post to : sikuli-driver@lists.launchpad.net
Unsubscribe : https://launchpad.net/~sikuli-driver
More help   : https://help.launchpad.net/ListHelp


[Sikuli-driver] [Question #265219]: Can Sikuli be used with Jython 2.5.3

2015-04-14 Thread Ashish
New question #265219 on Sikuli:
https://answers.launchpad.net/sikuli/+question/265219

Hello,

Can I use Sikuli with jython 2.5.3?
Using Jython I also want to run python scripts that use Sikuli features. Are 
the following steps enough for doing this:

- copy sikuli-java.jar to C;|Jython2.5.3
- Set the environment variable CLASSpath to
 set CLASSPATH = C:\jython2.5.3\sikuli-java.jar
- Set the environment variable JYTHONPATH
 set JYTHONPATH = C:\jython2.5.3\Lib;C:\jython2.5.3\sikuli-java.jar\Lib

I have been working on sikuli ide till now and have found it very useful in my 
attempts to the automate the testing of Desktop Application that I am working 
on.
Now I need to write some fairly complex python scripts and want to integrate 
sikuli with python. I am completely stuck at this point.
Your help would be immensely appreciated!!!

Thanks,
Ash


-- 
You received this question notification because you are a member of
Sikuli Drivers, which is an answer contact for Sikuli.

___
Mailing list: https://launchpad.net/~sikuli-driver
Post to : sikuli-driver@lists.launchpad.net
Unsubscribe : https://launchpad.net/~sikuli-driver
More help   : https://help.launchpad.net/ListHelp


[Sikuli-driver] [Bug 1202264] Re: [1.0] Linux: Centos 6.4-64: Clicking 'Run' closes the IDE and script is not run

2013-07-19 Thread ashish pancholi
Hello,

Creating the link got it working ! :) Thank you for the help.  I am
evaluating the use of Sikuli and Squish as test automation tool for our
project on graph plotting. User input is through GUI elements. It would
be of immense help if one can record a sequence of action by 'Begin
Session' and end it on 'End Session'. That way I can record my manual
test once instead of providing it as series of snapshots that are more
tedious to collect.

Also I am a left handed mouse user and have set my mouse settings to
'Left handed user'. I have to change it to 'Right handed user' for
Sikuli to perform Left click and Right click properly.

Great work ! Thank you for the help.

Ashish.

-- 
You received this bug notification because you are a member of Sikuli
Drivers, which is subscribed to Sikuli.
https://bugs.launchpad.net/bugs/1202264

Title:
  [1.0] Linux: Centos 6.4-64: Clicking 'Run' closes the IDE and script
  is not run

Status in Sikuli:
  Opinion

Bug description:
  I am trying to use Sikuli 1.0.0 on Centos 6.4 x86_64 (kernel 
2.6.32-358.6.2.el6.x86_64) as root. 
  I have following in /usr/local/lib

  libopencv_core.so.2.4.6
  libopencv_highgui.so.2.4.6
  libopencv_imgproc.so.2.4.6
  libpng15.so.15
  libtesseract.so.3.0.2
  liblept.so.3.0.0
  libz.so.1.2.3

  Output of 'java -version' on my terminal is

  java version 1.7.0_17
  Java(TM) SE Runtime Environment (build 1.7.0_17-b02)
  Java HotSpot(TM) 64-Bit Server VM (build 23.7-b01, mixed mode)

  The script I am trying to run is simple

  doubleClick(1374075551827.png)
  type(ls)

  where 1374075551827.png refers to snapshot of Terminal taken on my 
desktop by using doubleClick icon in the IDE. 
  I want to open the terminal and type 'ls' in the terminal. Once that is done 
I wish to press 'Enter' manually. 
  But when I run the script containing these two commands, Sikuli IDE closes 
and nothing happens. No Terminal pop's up.  
  Please tell me how to inspect what is going wrong and how can I perform this 
simple task using Sikuli.

  Ashish.

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/1202264/+subscriptions

___
Mailing list: https://launchpad.net/~sikuli-driver
Post to : sikuli-driver@lists.launchpad.net
Unsubscribe : https://launchpad.net/~sikuli-driver
More help   : https://help.launchpad.net/ListHelp


[Sikuli-driver] [Question #232726]: [1.0] Linux: Centos 6.4-64: Clicking 'Run' closes the IDE and script is not run

2013-07-19 Thread ashish pancholi
New question #232726 on Sikuli:
https://answers.launchpad.net/sikuli/+question/232726

I am trying to use Sikuli 1.0.0 on Centos 6.4 x86_64 (kernel 
2.6.32-358.6.2.el6.x86_64) as root. 
I have following in /usr/local/lib

libopencv_core.so.2.4.6
libopencv_highgui.so.2.4.6
libopencv_imgproc.so.2.4.6
libpng15.so.15
libtesseract.so.3.0.2
liblept.so.3.0.0
libz.so.1.2.3

Output of 'java -version' on my terminal is 

java version 1.7.0_17
Java(TM) SE Runtime Environment (build 1.7.0_17-b02)
Java HotSpot(TM) 64-Bit Server VM (build 23.7-b01, mixed mode)

The script I am trying to run is simple

doubleClick(1374075551827.png)
type(ls)

where 1374075551827.png refers to snapshot of Terminal taken on my desktop 
by using doubleClick icon in the IDE. 
I want to open the terminal and type 'ls' in the terminal. Once that is done I 
wish to press 'Enter' manually. 
But when I run the script containing these two commands, Sikuli IDE closes and 
nothing happens. No Terminal pop's up.  
Please tell me how to inspect what is going wrong and how can I perform this 
simple task using Sikuli.

Ashish.

-- 
You received this question notification because you are a member of
Sikuli Drivers, which is an answer contact for Sikuli.

___
Mailing list: https://launchpad.net/~sikuli-driver
Post to : sikuli-driver@lists.launchpad.net
Unsubscribe : https://launchpad.net/~sikuli-driver
More help   : https://help.launchpad.net/ListHelp


[Sikuli-driver] [Bug 1202264] Re: [1.0] Linux: Centos 6.4-64: Clicking 'Run' closes the IDE and script is not run

2013-07-18 Thread ashish pancholi
Hello,

Attached is the output from running

sikuli-ide.sh -d 3 -c

Sikuli files are in /opt/Sikuli/100/ and accessed by link /opt/Sikuli/latest. 
Also ~/.bash_profile exports LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib

Ashish.

** Attachment added: Output of Sikuli-ide running in debug mode.
   
https://bugs.launchpad.net/sikuli/+bug/1202264/+attachment/3740906/+files/sikuli_output

-- 
You received this bug notification because you are a member of Sikuli
Drivers, which is subscribed to Sikuli.
https://bugs.launchpad.net/bugs/1202264

Title:
  [1.0] Linux: Centos 6.4-64: Clicking 'Run' closes the IDE and script
  is not run

Status in Sikuli:
  New

Bug description:
  I am trying to use Sikuli 1.0.0 on Centos 6.4 x86_64 (kernel 
2.6.32-358.6.2.el6.x86_64) as root. 
  I have following in /usr/local/lib

  libopencv_core.so.2.4.6
  libopencv_highgui.so.2.4.6
  libopencv_imgproc.so.2.4.6
  libpng15.so.15
  libtesseract.so.3.0.2
  liblept.so.3.0.0
  libz.so.1.2.3

  Output of 'java -version' on my terminal is

  java version 1.7.0_17
  Java(TM) SE Runtime Environment (build 1.7.0_17-b02)
  Java HotSpot(TM) 64-Bit Server VM (build 23.7-b01, mixed mode)

  The script I am trying to run is simple

  doubleClick(1374075551827.png)
  type(ls)

  where 1374075551827.png refers to snapshot of Terminal taken on my 
desktop by using doubleClick icon in the IDE. 
  I want to open the terminal and type 'ls' in the terminal. Once that is done 
I wish to press 'Enter' manually. 
  But when I run the script containing these two commands, Sikuli IDE closes 
and nothing happens. No Terminal pop's up.  
  Please tell me how to inspect what is going wrong and how can I perform this 
simple task using Sikuli.

  Ashish.

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/1202264/+subscriptions

___
Mailing list: https://launchpad.net/~sikuli-driver
Post to : sikuli-driver@lists.launchpad.net
Unsubscribe : https://launchpad.net/~sikuli-driver
More help   : https://help.launchpad.net/ListHelp


[Sikuli-driver] [Bug 1202264] [NEW] Clicking 'Run' closes the IDE and script is not run

2013-07-17 Thread ashish pancholi
Public bug reported:

I am trying to use Sikuli 1.0.0 on Centos 6.4 x86_64 (kernel 
2.6.32-358.6.2.el6.x86_64) as root. 
I have following in /usr/local/lib

libopencv_core.so.2.4.6
libopencv_highgui.so.2.4.6
libopencv_imgproc.so.2.4.6
libpng15.so.15
libtesseract.so.3.0.2
liblept.so.3.0.0
libz.so.1.2.3

Output of 'java -version' on my terminal is

java version 1.7.0_17
Java(TM) SE Runtime Environment (build 1.7.0_17-b02)
Java HotSpot(TM) 64-Bit Server VM (build 23.7-b01, mixed mode)

The script I am trying to run is simple

doubleClick(1374075551827.png)
type(ls)

where 1374075551827.png refers to snapshot of Terminal taken on my desktop 
by using doubleClick icon in the IDE. 
I want to open the terminal and type 'ls' in the terminal. Once that is done I 
wish to press 'Enter' manually. 
But when I run the script containing these two commands, Sikuli IDE closes and 
nothing happens. No Terminal pop's up.  
Please tell me how to inspect what is going wrong and how can I perform this 
simple task using Sikuli.

Ashish.

** Affects: sikuli
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Sikuli
Drivers, which is subscribed to Sikuli.
https://bugs.launchpad.net/bugs/1202264

Title:
  Clicking 'Run' closes the IDE and script is not run

Status in Sikuli:
  New

Bug description:
  I am trying to use Sikuli 1.0.0 on Centos 6.4 x86_64 (kernel 
2.6.32-358.6.2.el6.x86_64) as root. 
  I have following in /usr/local/lib

  libopencv_core.so.2.4.6
  libopencv_highgui.so.2.4.6
  libopencv_imgproc.so.2.4.6
  libpng15.so.15
  libtesseract.so.3.0.2
  liblept.so.3.0.0
  libz.so.1.2.3

  Output of 'java -version' on my terminal is

  java version 1.7.0_17
  Java(TM) SE Runtime Environment (build 1.7.0_17-b02)
  Java HotSpot(TM) 64-Bit Server VM (build 23.7-b01, mixed mode)

  The script I am trying to run is simple

  doubleClick(1374075551827.png)
  type(ls)

  where 1374075551827.png refers to snapshot of Terminal taken on my 
desktop by using doubleClick icon in the IDE. 
  I want to open the terminal and type 'ls' in the terminal. Once that is done 
I wish to press 'Enter' manually. 
  But when I run the script containing these two commands, Sikuli IDE closes 
and nothing happens. No Terminal pop's up.  
  Please tell me how to inspect what is going wrong and how can I perform this 
simple task using Sikuli.

  Ashish.

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/1202264/+subscriptions

___
Mailing list: https://launchpad.net/~sikuli-driver
Post to : sikuli-driver@lists.launchpad.net
Unsubscribe : https://launchpad.net/~sikuli-driver
More help   : https://help.launchpad.net/ListHelp