Re: [Sikuli-driver] [Question #690303]: while vs while-if of what is more fast?

2020-04-28 Thread Guillermo
Question #690303 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/690303

Status: Answered => Solved

Guillermo 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 #690303]: while vs while-if of what is more fast?

2020-04-28 Thread RaiMan
Question #690303 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/690303

Status: Open => Answered

RaiMan proposed the following answer:
Same

-- 
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 #690303]: while vs while-if of what is more fast?

2020-04-28 Thread Guillermo
Question #690303 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/690303

Description changed to:
Hello!

I need to know what is more fast:

###

Code 1:

while True:
if exists(image,0):
break

###

Code 2:

while not exists(image,0):
pass

###

Thanks!

-- 
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 #690303]: while vs while-if of what is more fast?

2020-04-28 Thread Guillermo
New question #690303 on Sikuli:
https://answers.launchpad.net/sikuli/+question/690303

Hello!

I need to know what is more fast:

Code 1:

while True:
if exists(image,0):
break

Code 2:

while not exists(image,0):
pass

-- 
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 #690084]: Sikulixapi-2.0.4 not working after creating a jar of my Java SWt desktop application

2020-04-28 Thread Kunal Deshpande
Question #690084 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/690084

Status: Answered => Open

Kunal Deshpande is still having a problem:
Can you please help me?

-- 
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 #690264]: observe - onChange not working for me!

2020-04-28 Thread Guillermo
Question #690264 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/690264

Status: Answered => Open

Guillermo is still having a problem:
Thanks for the answer, already updated to 2.0.4 but still not detecting
changes.

Tried in two diferent notebooks, but no solutions.

Is there another way to detect changes? I tried to use capture() inside
a loop, but allways is comparing with the first capture(), the image
captured is not uptaded in the next loop.

-- 
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 #690264]: observe - onChange not working for me!

2020-04-28 Thread RaiMan
Question #690264 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/690264

Status: Open => Answered

RaiMan proposed the following answer:
Try with 2.0.4

-- 
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 #690161]: getting FindFailed error in headless mode

2020-04-28 Thread RaiMan
Question #690161 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/690161

Status: Open => Answered

RaiMan proposed the following answer:
Only if you can see the website on the screen, you can act on it with
the means of SikuliX.

As I understand, it is possible to create a screenshot  using Selenium features 
in headless mode.
You could use this shot, to find your target in it and calculate the click 
location.
Finally the click has to be done with a Selenium feature.

-- 
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 #690161]: getting FindFailed error in headless mode

2020-04-28 Thread Karan Joshi
Question #690161 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/690161

Karan Joshi gave more information on the question:
Hello RaiMan, above issue can be solved if it is possible to configure
sikulix ( object of Screen class  ) with selenium webdriver.

This is my code without headless mode which is executing without any sort of 
error ( Browser is visibile ) :
Screen s = new Screen();
System.setProperty("webdriver.gecko.driver","geckodriver");
FirefoxDriver driver = new FirefoxDriver();
driver.get(URL);
// then performing some action using sikuli ( such as detect 
object then click on )

When it comes to headless mode, code slightly changes as we need to pass
arguments (This makes driver to open browser in background):

Screen s = new Screen();
System.setProperty("webdriver.gecko.driver","geckodriver");
FirefoxOptions options = new FirefoxOptions();
options.addArguments("--headless");
FirefoxDriver driver = new FirefoxDriver(options);
driver.get(URL);
// then performing some action using sikuli ( such as detect 
object then click on )

In the second scenario,  browser is running in background(i.e. We can't see it 
on screen ) but can be accessed by selenium web driver.
 
So, is it possible to configure sikuli with selenium web driver?? Cause, I did 
not get any way to configure it.
If it is, then it can help browser to execute in headless mode.
Thank you

-- 
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 #690287]: A complex (OCR issue)

2020-04-28 Thread RaiMan
Question #690287 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/690287

Status: Open => Answered

RaiMan proposed the following answer:
Have a look on how to read the lines contained in a file

pyFile = open(...)
for line in pyFile:
if line.strip().startsWith("limit ="):
# eval the line

-- 
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 #690287]: A complex (OCR issue)

2020-04-28 Thread xyz_User
New question #690287 on Sikuli:
https://answers.launchpad.net/sikuli/+question/690287

Please advise if this is possible. With my current script I'm using the exec 
command to read external py file (with values or function) then executing that 
function from within sikuli.

My quesion is: How can i go about reading the ORC text on an image (This part 
is working fine, reads correct text) THEN compare that to the external py file 
value.

So for eg: my ext py file (limit.py) has the following declaration:

limit = 1000

Sikuli now reads a number on an image via OCR (say 2000)

now I need to execute the following:

if read image (2000) is > 1000 (in the limit.py) file do x

I hope that made sense. Please advise --- The part regarding reading external 
file is a must otherwise this would be easy to implement. Thank you!

-- 
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 #187101]: How to write multiple rows in excel through sikuli?

2020-04-28 Thread dannyprasath
Question #187101 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/187101

dannyprasath posted a new comment:
SHAREit for PC supports on Windows XP, Vista, 7, 8, 8.1, 10 which allows
you to share all kind of files from one device to another with a speed
that is 200 times quicker than Bluetooth

https://www.shareitforpcapkguide.com/shareit-for-pc-windows/
https://www.shareitforpcapkguide.com/shareit-for-mac-os/
https://www.shareitforpcapkguide.com/shareit-for-ios-iphone/
https://www.shareitforpcapkguide.com/shareit-for-laptop-download/   
https://www.shareitforpcapkguide.com/shareit-for-jio-phone-updated/ 
https://www.shareitforpcapkguide.com/shareit-for-android-tv-smart-tv/   
https://www.shareitforpcapkguide.com/shareit-for-ubuntu-16-04-free-download/
https://www.shareitforpcapkguide.com/shareit-apk-for-android-download/
https://www.shareitforpcapkguide.com/shareit-for-windows-phone-free-download/
https://www.shareitforpcapkguide.com/how-to-use-shareit-on-pc-to-transfer-files-to-from-mobile/
https://www.shareitforpcapkguide.com/shareit-alternatives-android/
https://www.shareitforpcapkguide.com/pc-to-pc-using-shareit-apk/
https://www.shareitforpcapkguide.com/shareit-for-ubuntu-16-04-free-download/
https://www.shareitforpcapkguide.com/shareit-for-blackberry-z10/

-- 
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 #187101]: How to write multiple rows in excel through sikuli?

2020-04-28 Thread dannyprasath
Question #187101 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/187101

dannyprasath posted a new comment:
Cartoon HD for PC is an app that allows you to stream your desired cartoons and 
movies on your PC. The uniqueness of Cartoon HD is its ability to provide you 
with the best animation and movies of your choosing.
https://www.bolsterfizz.com/2020/02/cartoon-hd-for-pc.html

https://www.bolsterfizz.com/
https://www.bolsterfizz.com/2020/02/cartoon-hd-for-pc.html
https://www.bolsterfizz.com/2019/10/tik-tok-for-pc-download.html
https://www.bolsterfizz.com/2020/01/pubg-for-pc-windows.html
https://www.bolsterfizz.com/2020/02/tubi-tv-for-pc.html
https://www.bolsterfizz.com/2020/01/hotstar-for-pc.html
https://www.bolsterfizz.com/2020/02/sun-nxt-for-pc.html
https://www.bolsterfizz.com/2020/02/zee5-for-pc.html
https://www.bolsterfizz.com/2020/02/voot-app-for-pc.html
https://www.bolsterfizz.com/2020/01/amazon-prime-for-pc.html
https://www.bolsterfizz.com/2020/02/kik-for-pc-windows.html
https://www.bolsterfizz.com/2019/12/clash-royale-for-pc.html
https://www.bolsterfizz.com/2020/02/Snapchat-For-PC.html
https://www.bolsterfizz.com/2020/02/how-to-get-grammarly-premium-for-free.html
https://www.bolsterfizz.com/2020/02/camscanner-for-pc.html
https://www.bolsterfizz.com/2020/02/google-pay-vs-samsung-pay.html

-- 
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 #689848]: Is there a way of ensuring that only the required number of clicks are carried out?

2020-04-28 Thread Launchpad Janitor
Question #689848 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/689848

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 #690265]: how to let Picture background and find photo

2020-04-28 Thread RaiMan
Question #690265 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/690265

Status: Open => Answered

RaiMan proposed the following answer:
SikuliX can only find what is visible on the screen.

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