Re: [Sikuli-driver] [Question #679017]: Vnc app detected only at first attempt after Sikulix Ide launch

2019-04-18 Thread matteoa
Question #679017 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/679017

Status: Answered => Solved

matteoa 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 #679017]: Vnc app detected only at first attempt after Sikulix Ide launch

2019-04-12 Thread RaiMan
Question #679017 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/679017

RaiMan proposed the following answer:
My tests with the latest build 1.1.4 did not show any problems, no
matter wether Notepad++ was already running or not.

I repeated the script several times, while stopping Notepad++ from time
to time.

my test

exe = r"C:\Program Files\Notepad++\notepad++.exe"
app = App(exe)
if not app.isRunning():
app.open(10)
if app.isRunning():
app.focus()
reg = Region(app.window())
print app, reg
else:
print "not running"

So it might be worth, to give the latest 1.1.4 a new chance.

I am on Windows 10 64Bit (1809/2019-03-23) with Java 12

-- 
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 #679017]: Vnc app detected only at first attempt after Sikulix Ide launch

2019-04-12 Thread RaiMan
Question #679017 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/679017

Status: Expired => Answered

RaiMan changed the question status:
Sorry for the delay. Is now at the top of the list.

-- 
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 #679017]: Vnc app detected only at first attempt after Sikulix Ide launch

2019-03-24 Thread Launchpad Janitor
Question #679017 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/679017

Status: Open => Expired

Launchpad Janitor expired the question:
This question was expired because it remained in the 'Open' state
without activity for the last 15 days.

-- 
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 #679017]: Vnc app detected only at first attempt after Sikulix Ide launch

2019-03-21 Thread matteoa
Question #679017 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/679017

matteoa posted a new comment:
hello,
no hopes for a fix for this problem?
Not a blocking one, but it would be nice to overcome it...
Thanks
Matteo

-- 
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 #679017]: Vnc app detected only at first attempt after Sikulix Ide launch

2019-03-08 Thread matteoa
Question #679017 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/679017

matteoa gave more information on the question:
Just a small addition:
with the older version of Sikulix I have the second test script never has 
problems, even if Notepad++ is closed.
I hope this helps...
Thanks again
Matteo

-- 
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 #679017]: Vnc app detected only at first attempt after Sikulix Ide launch

2019-03-08 Thread matteoa
Question #679017 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/679017

Status: Answered => Open

matteoa is still having a problem:
I reproduced the problem with this script(Notepad++ was closed before the 
launch):
chrExe = r"c:\Program Files (x86)\Notepad++\notepad++.exe" 
app = App(chrExe)
if not app.isRunning():
app.open(10)
vncReg=Region(app.window())
print app, app.window()
The error is on the line5 : vncReg=Region(app.window())
and the output is 
[error] script [ testapp2 ] stopped with error at line --unknown--
[error] Error caused by: Traceback (most recent call last): File 
"C:\Projects\DataPurchase\REACT\SikuliX\Test_h20\testapp2.sikuli\testapp2.py", 
line 5, in  vncReg=Region(app.window()) at 
org.sikuli.script.Region.(Region.java:414)
at org.python.proxies.sikuli.Region$Region$5.(Unknown Source)
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)
at java.lang.reflect.Constructor.newInstance(Unknown Source)
at 
org.python.core.PyReflectedConstructor.constructProxy(PyReflectedConstructor.java:211)
java.lang.NullPointerException: java.lang.NullPointerException 

When Notepad++ is already opened the script works repeatedly.

The original script I put on this question was working without problem from 
months, and using an older version of Sikulix still works every time.
Is it possible that in the newer versions there is something different to do to 
grab the region of an application and use it as a ROI for all the subsequent 
operations?
Thanks for your invaluable support
Matteo

-- 
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 #679017]: Vnc app detected only at first attempt after Sikulix Ide launch

2019-03-07 Thread RaiMan
Question #679017 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/679017

RaiMan proposed the following answer:
tested with the latest build #226 and Google Chrome:
cannot reproduce this behavior:

chrExe = r"C:\Program Files (x86)\Google\Chrome\Application\chrome.exe"
app = App(chrExe)
if not app.isRunning():
app.open(10)
print app, app.window()

output:
[105652:chrome (SikuliX1 Downloads - Google Chrome)] C:\Program Files 
(x86)\Google\Chrome\Application\chrome.exe  R[151,17 1720x993]@S(0)
[198460:chrome (SikuliX1 Downloads - Google Chrome)] C:\Program Files 
(x86)\Google\Chrome\Application\chrome.exe  R[151,17 1720x993]@S(0)
[198460:chrome (SikuliX1 Downloads - Google Chrome)] C:\Program Files 
(x86)\Google\Chrome\Application\chrome.exe  R[151,17 1720x993]@S(0)
[198460:chrome (SikuliX1 Downloads - Google Chrome)] C:\Program Files 
(x86)\Google\Chrome\Application\chrome.exe  R[151,17 1720x993]@S(0)

-- 
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 #679017]: Vnc app detected only at first attempt after Sikulix Ide launch

2019-03-07 Thread RaiMan
Question #679017 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/679017

Status: Open => Answered

RaiMan proposed the following answer:
Yes, there have been some changes to the App class since the mentioned snapshot.
I will check the situation asap.

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