[Sikuli-driver] [Question #677266]: Sikulix IDE not closing his process with nightly build SNAPSHOT-2018-12-31

2019-01-02 Thread matteoa
New question #677266 on Sikuli:
https://answers.launchpad.net/sikuli/+question/677266

hello, 
I downloaded today the nightly build, porting my configuration to 
1.1.4-SNAPSHOT-2018-12-31_16:24/Windows10.0/Java8(64)1.8.0_191-b12
>From today, and not with previous version from the 14th of december (I think, 
>maybe even with 20th december version), when I close the IDE even without 
>launching any script it is no more possible to launch it again without 
>manually killing the javaw.exe process and his descendants (java.exe and 
>conhost.exe).
The error message is "terminating: IDE already running" and after the close of 
this messagebox another triplet of jawaw, java and conhost remains running.
Any Idea on how to fix this?
Thanks in advance
Regards

-- 
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 #676872]: Differentiate identical buttons

2019-01-02 Thread TestMechanic
Question #676872 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/676872

TestMechanic proposed the following answer:
There are many ways to solve this challenge. First of all buttons looks
the same but have different coordinates .x and .y. So you can just
compare coordinates and see left-right top-down order.

-- 
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 #676954]: clear cursor

2019-01-02 Thread TestMechanic
Question #676954 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/676954

TestMechanic posted a new comment:
An important note here.

Sikuli doesn't know anything about your application beside image on the
screen. Any actions performed by Sikuli are not specific to your
application. It just happens your app to be on focus when actions are
performed :-). So chance of Sikuli wrong doing is low.

In contrast popular UI automation like Test complete and likewise are
drilling down in application DOM and sending events to DOM elements.
Same is for Selenium against web apps. And here tool can mess things
since it is interacting not on a UI level but on DOM

And back to original question: 
I am interested to try this problem if there is a trial version of this design 
app.

-- 
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 #676871]: Unable to type in Windows file browser dialog

2019-01-02 Thread TestMechanic
Question #676871 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/676871

TestMechanic posted a new comment:
Akos,

paste here your type() command

-- 
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 #676793]: How to update XML file remotely at particular node?

2019-01-02 Thread TestMechanic
Question #676793 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/676793

TestMechanic proposed the following answer:
Are you trying to update text is some editor? It can be done but you
need to provide more info about the text editor (screenshot or clip)

If UI editing is not required You can use conventional file operations.

-- 
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 #677269]: When using a for loop for a fixed list, type() is only the first letter

2019-01-02 Thread Matt Brown
New question #677269 on Sikuli:
https://answers.launchpad.net/sikuli/+question/677269

Hello,

When I use a for loop with a fixed list, when accessing the current item with 
`entry`, only the first letter of `entry` appears be typed using `type()`.

Is there an issue with type() or an issue with my syntax?

myListFixed = ("insomuchas")
for entry in myListFixed:
  type(entry)

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


Re: [Sikuli-driver] [Question #677266]: Sikulix IDE not closing his process with nightly build SNAPSHOT-2018-12-31

2019-01-02 Thread RaiMan
Question #677266 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/677266

Status: Open => Answered

RaiMan proposed the following answer:
please try again with latest build #168

-- 
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 #677269]: When using a for loop for a fixed list, type() is only the first letter

2019-01-02 Thread RaiMan
Question #677269 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/677269

Status: Open => Answered

RaiMan proposed the following answer:
myListFixed = ("insomuchas")

... just is the list of characters in the given string

myListFixed = ("insomuchas", )

makes a list with 1 string as entry.

Has nothing to do with that problem, but be aware of the restrictions of type() 
(see docs)
paste() might be the better choice.

-- 
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 #677270]: use of collectLinesText function

2019-01-02 Thread Rony Verch
New question #677270 on Sikuli:
https://answers.launchpad.net/sikuli/+question/677270

Hey, I am trying to use the collectLinesText function to get all the text shown 
on a page. When I run the following code:

result = collectLinesText()

I get the error: 

[error] java.lang.NullPointerException ( java.lang.NullPointerException )

I am not sure if I am missing something (such as an import) but i've tried to 
look at the documentation and previous questions and was unable to find a fix. 
I am also running this with the newest version of SikuliX, 1.1.4, using the IDE 
(sikulix.jar).

Any help would be appreciated. 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


Re: [Sikuli-driver] [Question #677269]: When using a for loop for a fixed list, type() is only the first letter

2019-01-02 Thread Matt Brown
Question #677269 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/677269

Matt Brown posted a new comment:
Ahh hah!  Excellent.

Is there a way to strongly type this is a string array so I don't run
into this issue?

Of course, single string was intended as a test.

-- 
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 #677269]: When using a for loop for a fixed list, type() is only the first letter

2019-01-02 Thread Matt Brown
Question #677269 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/677269

Status: Answered => Solved

Matt Brown 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 #677269]: When using a for loop for a fixed list, type() is only the first letter

2019-01-02 Thread RaiMan
Question #677269 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/677269

RaiMan posted a new comment:
Python generally is not strongly typed, hence type is evaluated from context on 
assignment.
... and variables can change their type at any time.

BTW: ("foo",) is not a list but a tuple and immutable.

The problem: the brackets ( ) syntactically are expression delimiters
and the tuple itself is "foo",

a list (mutable) is defined as:
aList = ["foo"]

or
aList = []
aList.append["foo"]

please consult the Python docs or a basic tutorial if you plan to do more 
complex things.
Be aware: the interpreter is Jython 2.7 (since SikuliX is Java based)

-- 
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 #677269]: When using a for loop for a fixed list, type() is only the first letter

2019-01-02 Thread Matt Brown
Question #677269 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/677269

Matt Brown posted a new comment:
In re to #2, quite obviously a lack of understanding of collections in
python.  Using a list `()` versus a set `[]` so that redundant entries
can be contained therein.  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 #677276]: loop

2019-01-02 Thread Ju1+i-我 .
New question #677276 on Sikuli:
https://answers.launchpad.net/sikuli/+question/677276

while True:
if not exists( pic1 ) or not exists( pic 2 ):
wait(8)
else:
break

but it doesn't work , can you provide another solution to solve this , thx 

-- 
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 #677277]: Unable to get Sikuli 1.1.4 operational

2019-01-02 Thread Joseph Maruca
New question #677277 on Sikuli:
https://answers.launchpad.net/sikuli/+question/677277

Hello Support,
I have just installed Java v8 on a Windows 7 & Windows 10 machine and recently 
downloaded the following files:
sikulix.jar
sikulixapi.jar
jython-standalone-2.7.1.jar

When double-clicking on the sikulix.jar file, I get the following error:

Exception in thread "main" java.lang.RuntimeException: SikuliX: fatal: Java 
arch not 64 Bit or not detected (java 8 version 1.8 vm 25.191-b12 class 52.0 
arch null)
at org.sikuli.script.RunTime.terminate(RunTime.java:71)
at org.sikuli.script.RunTime.get(RunTime.java:288)
at org.sikuli.ide.SikulixRunIDE.main(SikulixRunIDE.java:36)

Can you please assist?.  I do have Sikuli v1.1.3 working but not the latest 
version, appreciate your assistance, 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 #677276]: loop

2019-01-02 Thread Ju1+i-我 .
Question #677276 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/677276

Ju1+i-我. gave more information on the question:
pic1 & pic2 exists  , but still doesn't work ,

-- 
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 #677276]: loop

2019-01-02 Thread Ju1+i-我 .
Question #677276 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/677276

Status: Open => Solved

Ju1+i-我. confirmed that the question is solved:
sorry , my mistake , it's solved

-- 
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 #176005]: [HowTo] Nice unit test runner with html output

2019-01-02 Thread Sreelekshmi
Question #176005 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/176005

Sreelekshmi posted a new comment:
Can you please share the modified HTMLTestRunner.py to include
screenshot.

-- 
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 #676954]: clear cursor

2019-01-02 Thread Rares Pasca
Question #676954 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/676954

Rares Pasca posted a new comment:
Thanks guys for your responses. 
I'm just back from vacation so back to work.

@TestMechanic

Here you can find the trial version I guess, if you wanna try:

https://www.hager.de/software/hagercad-planungssoftware/326112.htm

-- 
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 #677281]: Spy 9999994242 Cheating Playing Cards in Delhi/India

2019-01-02 Thread googlein
New question #677281 on Sikuli:
https://answers.launchpad.net/sikuli/+question/677281

The Spy Cheating Playing Cards  in Delhi which is also known as the CVK 500 
Poker Analyzer Device. This is the latest playing cards scanner app for the 
poker players. Do you know how to use the spy playing cards cheating devices 
for winning in the game of playing cards? The different types of casino games 
such as Rummy, Teen Patti, Maang Patta, Cut Patta, Omaha, Blackjack, Flash or 
Andar Bahar are some games in which gamblers are making their luck in the 
casino games. Therefore, you don’t have a need to search for the Spy Cheating 
Playing Cards dealer in Delhi because we are the best dealer of spy playing 
cards devices. Now let’s use the Flash Cheating Tricks or Teen Patti Winning 
Tricks in the casino for making money in the short span of time because these 
Cheating Playing Cards in Delhi are the suitable example of latest casino 
cheating devices. Now you don’t have a need to worry about the game of playing 
cards because our spy cheating marked playing cards casino cards are able to 
give you victory in the game of poker.

The CVK 500 Poker Analyzer Device and Marked Playing Cards are some popular 
devices to cheat in the game of playing cards. The game of playing cards is 
really best for you if you have the skills and techniques to win the game of 
playing cards then no-one stops you to become the winner of the gambling games. 
These games are not always depending on the luck because if you use the smart 
gadgets to win the gambling games then you will able to achieve victory in the 
game of poker. No matter which game you are trying your luck? If you are using 
the latest casino cheating tricks and techniques then you will surely win the 
game of poker. There are so many different types of playing cards cheating 
devices in India are available for the gamblers such as playing cards 
soothsayer, new k3 analyzer, a hidden lens for playing cards, GSM Neckloop, CVK 
500 and shirt playing cards cheating devices.
https://www.townscript.com/e/playing-cards-software-free-download-for-cheating-playing-cards-device-402034
https://www.thinglink.com/user/1135452737765376003
https://topgoldforum.com/topic/334929-playing-card-cheating-device-and-scanner-device-price-in-delhi/
https://topgoldforum.com/profile/50306-spycheatingplayingcard/
http://hostingforum.ca/forum/member.php?u=58166&vmid=1991
http://www.movellas.com/list/edit/201812290816419360
http://www.movellas.com/group/detail/201812290819259368;jsessionid=0F5969640B0B1E76E43F4A22ADFE66CE.worker3



-- 
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 #677277]: Unable to get Sikuli 1.1.4 operational

2019-01-02 Thread masuo
Question #677277 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/677277

Status: Open => Answered

masuo proposed the following answer:
Do you want to use SikuliX1.1.4?
SikuliX1.1.4 requires 64-Bit systems and also 64-Bit java runtime.

There is an explanation.
http://sikulix.com/

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