144 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
2
votes
1
answer
93
views
SikuliX Click Text Suddenly Stopped Working Accurately
I am working on an automated GUI test using SikuliX and Robot Framework, to reduce the number of screenshots taken I want to rely on text detection in some cases where the text is clear and close to ...
0
votes
2
answers
141
views
sikulix ask user to click on location and save it
Is there a way to ask the user to click on a Location and save the coordinates to use that Location later?
None of the tools isted in the page
https://sikulix-2014.readthedocs.io/en/latest/interaction....
0
votes
1
answer
267
views
Issue with connecting to MySQL database using Sikulix 2.0.5
I am currently facing a problem with Sikulix 2.0.5 on a Windows 10 operating system, with JAVA8, Python, and Jython installed. Previously, I had been using version 1.1.3 successfully, where I had ...
0
votes
1
answer
246
views
Trying to Automate Sikuli but the runIDE is nowhere to be found
I am testing Sikuli as a desktop automation.
I "installed" Sikuli which is just me running the executable everytime to launch the program.
I am able to write up the flow of the desktop and ...
1
vote
1
answer
349
views
Possible causes are invalid address of the remote server or browser start-up failure
I use Eclipse IDE, selenium-java v4.8.3, and after I added the SikuliX API version 2.0.5 in my dependencies, I encountered this error
Exception in thread "main" org.openqa.selenium....
0
votes
2
answers
869
views
Sikulix No module named Do
When using 1.1.3 -- Sikuli works as expected, scripts are run without issue.
When using 2.0.5 (latest),
Sikuli IDE opens
Attempt any script, regardless if it's new or existing
The following error is ...
0
votes
1
answer
202
views
Best way to share SikuliX scripts (and OS friendly)?
I have a Sikuli 2 script which is composed of:
an app.sikuli directory
with a app.py in it
and several Things.png images
Most of this structure was auto generated by SikuliX while I was creating the ...
0
votes
1
answer
271
views
Sikulix wait until image not appear anymore i.e page still loading
I am a new Sikulix user. I have learned how to wait until image appears on screen. But the issue is how to wait until an image is not visible any more. In below code when "nextbutton.jpg" is ...
0
votes
1
answer
116
views
Sikuli click on the wrong thing
Hello I'm writtin a script with Sekuli.
But when I write example: screen.click(test.png). It happens that Sikuli just click on the wrong screenshot. I don't understand why. How can I tell to Sikuli to ...
0
votes
1
answer
160
views
Sikuli - text not shown correct in IDE
I am usin Sikuli for the first Time. I downloaded Sikuli ide 2.0.4, and jython into the same folder.
after running sikuli IDE and writing a text (e.g. click()) the text is shown wrong:
...
0
votes
1
answer
673
views
How to uniquely identify an image in sikuli on windows 10. I'm getting an exception
I have two similar images, one image is on the left and one is on the right hand side of the screen. I want to click on the image on the left.
My idea in the code is to create a region for the image ...
1
vote
1
answer
1k
views
Sikulix - exists function has timeout?
i have a sikulix code with 5 if statement like this :
if exists("1642200162130.png"):
It enter in only one if statement, where there is only one click()
click(Location(me.x + paddingx, me.y ...
0
votes
1
answer
444
views
Sikuli - How to turn off FindFailed exceptions, setThrowException() not working
I'm using Sikulix IDE v2.0.5 and trying to search on the screen a specific word, then look at his right if there is another specific word.
I saw that I should use setThrowException(False) to Skip the ...
0
votes
1
answer
460
views
Measure the time in sikuli
I am trying to automate and measure the performance of an application and some use cases .The application launches the remote server through the VNC and do some user actions on the remote server.
We ...
0
votes
1
answer
413
views
SikuliX: my script reacts too slow when detecting the image, how to improve it?
I am making a script that make my character do the fishing automatically
fishAppear = "exclamationMark.png"
getFish = Pattern("pullBackFishRod.png").targetOffset(2,0)
Settings....