Re: [Sikuli-driver] [Question #699892]: Does reload(module) is bugged in 2.0.6 java17 on Win11?

2021-12-16 Thread Adrian
Question #699892 on SikuliX changed: https://answers.launchpad.net/sikuli/+question/699892 Description changed to: H all, I'v updated Sikuli from 1.0.1 to 2.0.6 (sikulixidewin-2.0.6-2020.175831-5.jar)Java 17 on Windows 11 and still have problem with reloading module (sub script). Im ask

Re: [Sikuli-driver] [Question #699892]: Does reload(module) is bugged in 2.0.6 java17 on Win11?

2021-12-16 Thread Adrian
Question #699892 on SikuliX changed: https://answers.launchpad.net/sikuli/+question/699892 Description changed to: H all, I'v updated Sikuli from 1.0.1 to 2.0.6 (sikulixidewin-2.0.6-2020.175831-5.jar)Java 17 on Windows 11 and still have problem with reloading module (sub script). Im ask

Re: [Sikuli-driver] [Question #699892]: Does reload(module) is bugged in 2.0.6 java17 on Win11?

2021-12-16 Thread Adrian
Question #699892 on SikuliX changed: https://answers.launchpad.net/sikuli/+question/699892 Description changed to: H all, I'v updated Sikuli from 1.0.1 to 2.0.6 (sikulixidewin-2.0.6-2020.175831-5.jar)Java 17 on Windows 11 and still have problem with reloading module (sub script). Im ask

Re: [Sikuli-driver] [Question #699892]: Does reload(module) is bugged in 2.0.6 java17 on Win11?

2021-12-16 Thread Adrian
Question #699892 on SikuliX changed: https://answers.launchpad.net/sikuli/+question/699892 Description changed to: H all, I'v updated Sikuli from 1.0.1 to 2.0.6 (sikulixidewin-2.0.6-2020.175831-5.jar)Java 17 on Windows 11 and still have problem with reloading module (sub script). Im ask

[Sikuli-driver] [Question #699892]: Does reload(module) is bugged in 2.0.6 java17 on Win11?

2021-12-16 Thread Adrian
New question #699892 on SikuliX: https://answers.launchpad.net/sikuli/+question/699892 H all, I'v updated Sikuli from 1.0.1 to 2.0.6 (sikulixidewin-2.0.6-2020.175831-5.jar)Java 17 kon Windows 11 and still have problem with reloading module. Im asking because do not remember this pr

Re: [Sikuli-driver] [Question #699892]: Does reload(module) is bugged in 2.0.6 java17 on Win11?

2021-12-16 Thread Adrian
Question #699892 on SikuliX changed: https://answers.launchpad.net/sikuli/+question/699892 Description changed to: H all, I'v updated Sikuli from 1.0.1 to 2.0.6 (sikulixidewin-2.0.6-2020.175831-5.jar)Java 17 on Windows 11 and still have problem with reloading module. Im asking because d

[Sikuli-driver] [Bug 1840077] Re: [1.1.4] API: Crash when running under OpenJ9 JVM on Windows

2019-08-15 Thread Adrian Taga
Thanks! In the meantime I have built the naked jar, took the modified class file and monkey patched it into the full jar. I can confirm that with this modification, sikuliX API now works with OpenJ9 on Windows. For reference, this is the patch I used: --- a/API/src/main/java/org/sikuli/script/sup

[Sikuli-driver] [Bug 1840077] Re: [1.1.4] API: Crash when running under OpenJ9 JVM on Windows

2019-08-14 Thread Adrian Taga
Thanks for the super fast reply! I'll try the next snapshot build and report back. When are you releasing the next build? Is this the correct link? https://oss.sonatype.org/content/repositories/snapshots/com/sikulix/sikulixapi/1.1.4-SNAPSHOT/ -- You received this bug notification because you a

[Sikuli-driver] [Bug 1840077] Re: [1.1.4] API: Crash on OpenJ9 JVM on Windows

2019-08-14 Thread Adrian Taga
** Summary changed: - Crash on OpenJ9 JVM on Windows + [1.1.4] API: Crash on OpenJ9 JVM on Windows ** Description changed: - SikuliX crashes on Windows when running under OpenJ9 JVM (formerly IBM J9). + SikuliX API crashes on Windows when running under OpenJ9 JVM (formerly IBM J9). The crash

[Sikuli-driver] [Bug 1840077] [NEW] Crash on OpenJ9 JVM on Windows

2019-08-13 Thread Adrian Taga
Public bug reported: SikuliX crashes on Windows when running under OpenJ9 JVM (formerly IBM J9). The crash happens when the JVM loads the Finder class. This is a simple test program to reproduce the crash: public class SikuliBug {  public static void main(String[] args) {   new org.sikuli.script

Re: [Sikuli-driver] [Question #674136]: Loop break by if exists ("path to image") not work :(

2018-09-21 Thread Adrian Zieliński
Question #674136 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/674136 Status: Answered => Solved Adrian Zieliński confirmed that the question is solved: Yup, now everything works correct. Thx for help! -- You received this question notification because your t

Re: [Sikuli-driver] [Question #674136]: Loop break by if exists ("path to image") not work :(

2018-09-19 Thread Adrian Zieliński
Question #674136 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/674136 Adrian Zieliński posted a new comment: Hi, Probably I found solution :P I've just break loop in wrong moment :P Here it is: for n in range(20): type (Key.F6, KeyModifier.SHIFT) wait(2)

Re: [Sikuli-driver] [Question #674136]: Loop break by if exists ("path to image") not work :(

2018-09-19 Thread Adrian Zieliński
Question #674136 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/674136 Adrian Zieliński posted a new comment: Hi, you mean sth like this: while True: if not exists("1537362590995.png"): for n in range(10): ? I tried this b

Re: [Sikuli-driver] [Question #674136]: Loop break by if exists ("path to image") not work :(

2018-09-19 Thread Adrian Zieliński
Question #674136 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/674136 Adrian Zieliński posted a new comment: I also tried sth like below: while True: if not exists("1537362590995.png",0): for n in range(10): type(Key.F6, KeyModi

[Sikuli-driver] [Question #674136]: Loop break by if exists ("path to image") not work :(

2018-09-19 Thread Adrian Zieliński
New question #674136 on Sikuli: https://answers.launchpad.net/sikuli/+question/674136 Hi all! I have sth like below: for n in range(10): type (Key.F6, KeyModifier.SHIFT) wait(2) for n in range(4): type(Key.TAB) type(Key.ENTER) x=0 y=+16

[Sikuli-driver] [Question #667921]: if wait(img1) or wait(img2) in statement

2018-04-14 Thread Adrian
New question #667921 on Sikuli: https://answers.launchpad.net/sikuli/+question/667921 Hi there, i need to wait for one of two images aroud 30 or 240 sec max, and depends on what img is shown do some actions. Is it possible to do something like that statement? if wait(IMG1, 240) or wait(IMG2, 2

Re: [Sikuli-driver] [Question #667197]: how can i check if value is integer or string? Err in conversion

2018-04-14 Thread Adrian
Question #667197 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/667197 Status: Answered => Solved Adrian confirmed that the question is solved: Thanks RaiMan, that solved my question. -- You received this question notification because your team Sikuli Drivers is

Re: [Sikuli-driver] [Question #667197]: how can i check if value is integer or string? Err in conversion

2018-03-25 Thread Adrian
lems with creating automation of my stuff beyond this conversion and comparision two values. Is something wrong with conversion or exists function to check wheter type the value is.. i know i could leave conversion and still check two strings like before, but y

[Sikuli-driver] [Bug 1758592] Re: how can i check if value is integer or string? Err in conversion

2018-03-24 Thread Adrian
roblems with creating automation of my stuff beyond this conversion and comparision two values. Is something wrong with conversion or exists function to check wheter type the value is.. i know i could leave conversion and still check two strings like before, but you know... more precise means

Re: [Sikuli-driver] [Question #667197]: how can i check if value is integer or string? Err in conversion

2018-03-24 Thread Adrian
Question #667197 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/667197 Adrian posted a new comment: Hi there, after correct OCR from images, removing any dots commas and letters if recognised by mistake, than convert string to int and tried to compare with variable - digits

[Sikuli-driver] [Question #667197]: how can i check if value is integer or string? Err in conversion

2018-03-24 Thread Adrian
the beginning of my scripting and reading sikuli doc i have no problems with creating automation of my stuff beyond this conversion and comparision two values. Is something wrong with conversion or exists function to check wheter type the value is.. i know i could leave conversion and still check

[Sikuli-driver] [Bug 1758592] [NEW] how can i check if value is integer or string? Err in conversion

2018-03-24 Thread Adrian
ting automation of my stuff beyond this conversion and comparision two values. Is something wrong with conversion or exists function to check wheter type the value is.. i know i could leave conversion and still check two strings like before, but you know... more precise means always better ;

[Sikuli-driver] [Question #664616]: Using Sikuli with BDD (Behave or Lettuce)

2018-02-19 Thread Adrian Pothuaud
ture: Test Applications launching Scenario: Launch Google Chrome When I launch "Google Chrome" Then I shoud see "google chrome menu icon" With steps definitions in another .sikuli/.py module of course. So the main question is: is sikuli beha

Re: [Sikuli-driver] [Question #435954]: Finding one of several images in predefined region

2017-01-15 Thread Adrian C
Question #435954 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/435954 Status: Answered => Solved Adrian C confirmed that the question is solved: Thanks RaiMan, that solved my question. -- You received this question notification because your team Sikuli Drivers is

Re: [Sikuli-driver] [Question #435954]: Finding one of several images in predefined region

2017-01-10 Thread Adrian C
Question #435954 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/435954 Description changed to: Hi, I'm trying to define a region that can have one one several images. For example, the image could be img1, img2, img3 etc., and I need to identify which image it is, in a reasonable

[Sikuli-driver] [Question #435954]: Finding one of several images in predefined region

2017-01-10 Thread Adrian C
New question #435954 on Sikuli: https://answers.launchpad.net/sikuli/+question/435954 Hi, I'm trying to define a region that can have one one several images. For example, the image could be img1, img2, img3 etc., and I need to identify which image it is, in a reasonable timeframe (a few seconds

Re: [Sikuli-driver] [Question #291477]: How to manage multi-instances of a same app (ex: multi-session) ??

2016-04-20 Thread Adrian Pothuaud
Question #291477 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/291477 Adrian Pothuaud 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

Re: [Sikuli-driver] [Question #291477]: How to manage multi-instances of a same app (ex: multi-session) ??

2016-04-20 Thread Adrian Pothuaud
Question #291477 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/291477 Status: Answered => Solved Adrian Pothuaud confirmed that the question is solved: Thanks RaiMan, Using the Application class i've got all i need Working well but as you said, we need window t

[Sikuli-driver] [Question #291477]: How to manage multi-instances of a same app (ex: multi-session) ??

2016-04-19 Thread Adrian Branluchon
New question #291477 on Sikuli: https://answers.launchpad.net/sikuli/+question/291477 Hi everyone :) I'm an apprentice in QA & Automation Testing Engineering in France and i'm trying to introduce sikuli to simplify my daily-work :) I would like to know if using python/jython/Sikuli methods, we