Re: [Sikuli-driver] [Question #271681]: Sikuli hangs on the third script when importing four scripts into my main

2015-09-22 Thread Jason
Question #271681 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/271681

Status: Open => Solved

Jason confirmed that the question is solved:
I was able to solve the issue by adding a setAutoWaitTimeout() to script
3 :)

-- 
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 #271654]: steps to build sikuli API jar from source

2015-09-22 Thread deva
New question #271654 on Sikuli:
https://answers.launchpad.net/sikuli/+question/271654

steps to build sikuli API jar from source

can you please point me to the right documentation

-- 
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 #271680]: [error] ResourceLoaderBasic: check: libs dir is empty, has wrong content or is outdated [action] ResourceLoaderBasic: check: Please wait! Trying to extract libs to:

2015-09-22 Thread chandan
New question #271680 on Sikuli:
https://answers.launchpad.net/sikuli/+question/271680

I dont know why m getting this error all the time I am running my selenium 
script. Can you please help with this

-- 
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 #271681]: Sikuli hangs on the third script when importing four scripts into my main

2015-09-22 Thread Jason
New question #271681 on Sikuli:
https://answers.launchpad.net/sikuli/+question/271681

I have a main script I am trying to run from the sikuli IDE 1.01.  The main 
script is using the import function to import other scripts.  I am able to run 
each script individually with no issues.  However, when I run the main script 
with the imports the script hangs forever when it reaches the third 
script.(script 1 and 2 run perfectly)  It does not fail and there are no errors 
when I manually stop the script after many minutes of waiting using 
"ALT-SHIFT-C".  PLEASE HELP!  :)

Example:

#script1.sikuli
from sikuli import *
import os
import shutil

for root, dirs, files in os.walk("some\\location\\"):
for f in files:
os.unlink(os.path.join(root, f))
for d in dirs:
shutil.rmtree(os.path.join(root, d))
wait(5)

#script2.sikuli
from sikuli import *
App.open("C:\\some\\location")
wait(5)

#script3.sikuli
from sikuli import *
App.open("C:\\some\\location")
wait(5)

#script4.sikuli
from sikuli import *
App.focus("someapp")
click(someimage)
click(someimage)
wait(5)



#mainScript.sikuli

import script1
reload script1

import script2
reload script2

import script3
reload script3

import script4
reload script4

wait(5)
exit(1)

-- 
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 #237032]: Problems building the Sikuli sources

2015-09-22 Thread Sarav
Question #237032 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/237032

Sarav posted a new comment:
Hi Raiman,

I am searching to get a quick step / guide to edir source code of 1.1.0
in Netbeans , pls guide

-- 
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 #271660]: java.lang.UnsatisfiedLinkError happens when i try to use App.open()

2015-09-22 Thread Mikhail
New question #271660 on Sikuli:
https://answers.launchpad.net/sikuli/+question/271660

Use Sikuli in IDE Eclipse on OS X 10.10.5
Try to use App.open("Google Chrome");
Next error happens:

java.lang.UnsatisfiedLinkError: 
org.sikuli.natives.MacUtil._openApp(Ljava/lang/String;)Z
at org.sikuli.natives.MacUtil._openApp(Native Method)
at org.sikuli.natives.MacUtil.open(MacUtil.java:126)
at org.sikuli.script.App.open(App.java:425)
at org.sikuli.script.App.open(App.java:416)

POM.xml
...

com.sikulix
sikulixapi
1.1.0-SNAPSHOT

...

com.sikulix
com.sikulix
https://oss.sonatype.org/content/groups/public
default

true
always


...

The question is how can I fix it? 


-- 
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 #271619]: Trouble installing SikulinX in windows 7?

2015-09-22 Thread Sam
Question #271619 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/271619

Status: Open => Solved

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

-- 
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 #271628]: how to Close All IE which have opened before open a new IE ?

2015-09-22 Thread YongJianYan
Question #271628 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/271628

YongJianYan posted a new comment:
I have used 1.1.0 nightly build 20150915 but fail to close all IE in
windows 7

-- 
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 #271660]: java.lang.UnsatisfiedLinkError happens when i try to use App.open()

2015-09-22 Thread Mikhail
Question #271660 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/271660

Status: Answered => Open

Mikhail is still having a problem:
The same error in case if I point full path to the app. 
This method used to work in previous version of Sikuli (1.0.1). Unfortunately 
now it doesn't

-- 
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 #271639]: Havign trouble getting global hotkeys to work in windows 7?

2015-09-22 Thread Sam
Question #271639 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/271639

Status: Answered => Solved

Sam confirmed that the question is solved:
Thanks masuo, that solved my question.

-- 
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 #271660]: java.lang.UnsatisfiedLinkError happens when i try to use App.open()

2015-09-22 Thread carl
Question #271660 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/271660

Status: Open => Answered

carl proposed the following answer:
in the spirit of sharing..


App.open("Google Chrome");
I use windows and I need to write 
App.open("C://directory//Goggle Chrome.exe")

-- 
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