Questions tagged [sikuli-script]

SikuliX = Sikuli IDE + Sikuli Script So, Sikuli Script = SikuliX - Sikuli IDE

Sikuli automates anything you see on the screen. It uses image recognition to identify and control GUI components. It is useful when there is no easy access to a GUI's internal or source code.

Sikuli was an open-source research project at the User Interface Design Group at MIT.

For details: http://www.sikuli.org/

143 questions
0
votes
0 answers

Sikuli API not registering typing commands correctly

I'm using the Sikuli API to develop a repetitive task that involves some GUI components. So far I've been able to recognize images, but when I try use the type command it does not pay attention to the case of my string and simply types everything in…
Grey
  • 263
  • 2
  • 11
0
votes
1 answer

Trying to create standalone Sikuli application

I want to be able to distribute my Sikuli script and allow the end user to run the script without installing Sikuli, my only problem at this point is not knowing what dependencies Sikuli needs to run (besides JAVA). With this knowledge I simply want…
user1724365
  • 87
  • 2
  • 15
0
votes
0 answers

How to call a function from another class in python->sikuli?

How can i access methods of channel1 in channel2 so that test_script1,test_script2 is execute first and then test_script3,test_script4. Note:- The main issue is when i am executing suite1= unittest.TestLoader().loadTestsFromTestCase(channel1)…
chandu
  • 33
  • 1
  • 8
0
votes
1 answer

How to generate logs with timestamp in sikuli?

I want to generate logs with time stamp being in place of popups i have mentioned. Please suggest some steps for generating logs with time…
chandu
  • 33
  • 1
  • 8
0
votes
1 answer

How to scan for an image before Findfailed prompt

here is what I need to do. Please let me know what I should add or change. Problem: In the task I'm having, sometimes there is a random popup with a slider. When this pops up, Sikuli will throw a FindFailed exception. Instead I would like this…
0
votes
2 answers

Sikuli: How to get program to capture part of the screen and store as image

So I want to capture one image, image s, which is always in the same region. It then disappears and may or may not re-appear in a different region. I would like the program to capture the first time it appears and if it re-appears in the other…
codeav33
  • 1
  • 2
0
votes
2 answers

EXCEPTION_ACCESS_VIOLATION with Sikuli's openApp method

I am using Sikuli-api to automate a standalone application. This application starts on running *.bat file. In code I am opening this application as: m_sikscr=new SikuliScript(); m_sikscr.openApp("path of bat file"); I am getting below…
MKay
  • 818
  • 9
  • 32
0
votes
1 answer

Starting Sikuli from Python returns error

I want to run Sikuli for automating windows application using Python. I am new to Sikuli. Actually I have installed Sikuli by using pip install sikuli. And then I tried to import it in my Python file as given below: from sikuli import…
0
votes
1 answer

Python - Sikuli & Hangman Game

I've been trying to make a hangman game where if the command "!hangman" is iniated, this code will execute: def cmdHangman(event): print("!hangman") #this print works type("Game: Hangman") type(Key.ENTER, Key.SHIFT) …
SikuliXUser
  • 53
  • 1
  • 2
  • 9
0
votes
1 answer

Sikuli ide special caracters :, \ doesn' t pass through

I am using Sikuli ide, I want to do a very simple type("1440144711350.png", "C:\tests\exportDest.csv") But it doesn' t seems to work, when i run it, i got errors, what' s the problem may be coming from ? Thanks
dtjmsy
  • 2,664
  • 9
  • 42
  • 62
0
votes
1 answer

Use sikuli-script on different OS

I'm writing scripts on Java with Selenium WebDriver. To navigate with Windows Windows and other programs I decide to use sikuli-script in my project. But, I didn't think what will be if these scripts will run in other mashines on MAC OS, Linux,…
Vitaliy Mckay
  • 163
  • 2
  • 13
0
votes
1 answer

Need to run sikuli script on remote PC using PsExec

I have maintained a sikuli script which runs good for a GUI application on my PC, say PC-A. Also I have PsExec installed on it. My GUI application is installed on PC-B. What I need to do is, run the sikuli script (on PC-A) to execute for GUI app on…
Bharath Kashyap
  • 343
  • 2
  • 5
  • 14
0
votes
1 answer

sikuli-ide not working/responding correctly

When I doublick click on Sikuli-ide.jar, then a dialogue appears, when I dont enter any option and click ok button then the application just closes and nothing happens. why is it so, I want to start automation using selenium-ide.jar can anyone…
Harsh Nigam
  • 465
  • 2
  • 6
  • 22
0
votes
3 answers

Modifying try-catch statements to reduce clunky code

I've been working with SikuliX to get some try some ATDD. The code works well when only I am the one working with it. However transferring the below code to anyone else is simply counter-productive irrespective of how well I comment the code. int…
Juxhin
  • 5,068
  • 8
  • 29
  • 55
0
votes
2 answers

How to automate upload multiple files using sikuli and selenium webdriver in java

I am new with sikuli, Unable to generate Sikuli script for upload functionality for web application.
1 2 3
9
10