Sikuli is a visual technology to automate and test graphical user interfaces (GUI) using images (screenshots). Sikuli includes Sikuli Script, a visual scripting API for Jython, and Sikuli IDE, an integrated development environment for writing visual scripts with screenshots easily. Sikuli Script ...
20
votes
9answers
4k views
Has anybody used SIKULI for testing their GUI-based apps?
SIKULI seems to have an enormous amount of potential. Has anybody tried to use this as a tool for testing? Or would it be better suited for automating actions for users?
8
votes
4answers
2k views
How to integrate Sikuli scripts into Selenium?
I'm extensively using Selenium for integration testing. Works great for all normal stuff (HTML/AJAX), but no go when I'm trying to test third party ActiveX, Java applets and Flash components.
The ...
7
votes
3answers
301 views
Jython: Making a simple beep on Windows
I'm working with Sikuli, which (I think) is build on Jython. I want to make a script that does a small gentle beep to attract the user's attention. (This is on Windows.)
How can I do this? I see that ...
4
votes
1answer
280 views
Calling Sikuli from CPython
Does anyone know the best/recommended way to call Sikuli scripts directly from Python (CPython).
This post: https://answers.launchpad.net/sikuli/+question/124759
recommends XMLRPC, which seems a bit ...
3
votes
1answer
398 views
Screen Region Recognition to Find Field location on Screen
I am trying to figure out a way of getting Sikuli's image recognition to use within C#. I don't want to use Sikuli itself because its scripting language is a little slow, and because I really don't ...
2
votes
1answer
215 views
using Python logger class to generate multiple logs for different log levels
I looked through the tutorials for the python logging class here and didnt see anything that would let me make multiple logs of different levels for the same output. In the end I would like to have ...
2
votes
1answer
183 views
Integrate Selenium Grid and Sikuli API
Currently, I am working on the automation testing framework, which combines with both Selenium Grid and Sikuli API.
I already implemented a library which includes functionality of Selenium and ...
2
votes
2answers
255 views
How to protect Sikuli source and make it an standalone executable file?
I have made an application from Sikuli IDE which clicks on a website links. Now i want to hide its source and compile it as an standalone exe file for my friends.
Please let me know how to do it.
...
2
votes
2answers
2k views
Sikuli List of Functions & Operators
I've just discovered Sikuli, and would like to see a comprehensive functions list without digging through the online-examples and demos.
Has anyone found such a list?
Furthermore, apparently Sikuli ...
1
vote
1answer
138 views
How i can use a function in sikuli which is defined in an another sikuliscript?
i try to use Sikuli. I will have 2 Files. One of them will be the "main" file and one of then is for functions.
The main-file i have called "test" and the file for die Function i have called ...
1
vote
0answers
173 views
Sikuli for Browser Testing -?
All though we have multiple sites (like spoon) to get us help with browser testing, how about using Sikuli for cross / multiple browser testing? Has any one tried it and can share whether it works or ...
1
vote
1answer
77 views
Can I open a text file in one script, then write to that file in a child script?
This is a little bit of a strange question, but I have a bunch of automation scripts (using Sikuli/Jython), that i want to run from a parent script for regression purposes. Now I also have a method ...
1
vote
1answer
579 views
How to send “ctrl + c” in sikuli?
this feels like it should be pretty easy but I can't find documentation on how to do this:
I just want sikuli to type ctrl+c to copy text to the clipboard.
type(KEY_CTRL+'c') doesn't work and ...
1
vote
1answer
239 views
Ant and Junit: no xml report being generated
I'm very new to ant and junit. I need junit to create an xml output so I can integrate with team city. The tests run just fine, but I'm not getting any output in the directory that I'm specifying. ...
1
vote
0answers
313 views
Function statement of CfgParserbreaking python script netbeans sikuli
For a reason I don't understand the following line causes my sikuli/python script to break. I suspect this is because my code to read a config file is buggy. I fail to see why, what am I misssing.
...
1
vote
1answer
992 views
loop/repeat in sikuli
switchApp("Safari.app")
t = find(img)
t1= capture(t.getX(), t.getY() - 25, t.getW(), t.getH(),)
click(t1)
sleep(1)
type("text")
sleep(2)
type(Key.ENTER)
type(Key.PAGE_DOWN)
I have the above working ...
1
vote
1answer
902 views
Help! Sikuli unit test can not run
I couldn't run any unit tests either in the window xp?
The IDE is functional. I write the simple example unit test script in the editor, as follow:
def testHelloWorld(self):
print("Hello World!")
...
1
vote
2answers
338 views
1
vote
3answers
511 views
Change Sikuli's sensitivity?
I've been using sikuli for awhile, however I have an issue with it... It's not sensitive enough. I'm trying to match something on the screen that is -EXACT-, and there are a few other items on the ...
1
vote
1answer
1k views
Can I use Sikuli as an Jython library in my project?
Sikuli is really cool, but it's working in its buildin Jython environment, the Sikuli IDE.
So I m wondering is it possible to import Sikuli as an external library to my Jython library? I saw from ...
1
vote
3answers
315 views
How would I triple-click in Sikuli?
I am trying to select an entire line of text on a web page (in a table) using Sikuli. The easiest way to select the text is to "triple-click" on it. Is there a way to triple-click in Sikuli?
Thanks!
...
0
votes
1answer
57 views
Sikuli - NameError: global name 'openApp' is not defined
I'm calling a sikuli function, inside Sikuli IDE, but I get this error "NameError: global name 'openApp' is not defined"...
If I try to do openApp('calc') in a new Sikuli blank file, it works, but if ...
0
votes
1answer
166 views
Exporting sikuli unit test data as a report
Is there an automated tool to generate reports containing information about unit tests when using sikuli? The data I want would be things such as pass/fail, a trace to where/why it failed, and a log ...
0
votes
1answer
107 views
Drag and drop with Sikuli
I am having trouble using drag and drop with Sikuli. I would like to drag something in any other direction (up, down, left, right) for a fixed number of pixels.
This looks like it should work:
t = ...
0
votes
1answer
94 views
sikuli: how to execute java jar file
I loaded a java jar file into http://www.sikuli.org/ and tried to run it like this but it is not working. Any hints?
load("C:\Users\...\TJF.jar")
import subprocess
subprocess.call(['java', '-jar', ...
0
votes
1answer
275 views
How to make a function in Sikuli to use it in other Sikuli scripts?
I want to create a function wich use Sikuli features (as click, doubleclick, wait, etc) to create other scripts in Sikuli, as a libary using functions from sikuli.
Example in the "libary" file:
def ...
0
votes
0answers
219 views
NameError: name 'Logi' is not defined with Sikuli
I'm just trying Sikuli. I'm trying to have a "main" page that call others files containing some classes and some def. But I get following error:
[error] Arrêté [error] Une erreur est survenue à la ...
0
votes
1answer
200 views
how to convert sikuli script in java program
I have recorded the GUI desktop application using SIKULI TO CLICK A FLASH BUTTON.
Now i have would like to convert sikuli script in java as per below
import org.sikuli.script.*;
public class ...
0
votes
0answers
61 views
Sikuli: Exception violation exception when System.exit()
My Sikuli (RC2) script crashes with a EXCEPTION_ACCESS_VIOLATION when calling System.exit(). My Sikuli installation was installed from the installer and all system environment variables are setup ...
0
votes
2answers
344 views
watirgrid and sikuli - can they play together?
I was wondering if watirgrid / gridinit could be used in conjunction with Sikuli. http://www.sikuli.org
I've had some success integrating Sikuli with watir-webdriver and cucumber following the ...
0
votes
2answers
243 views
Python - looking for a way to stop a function being called temporarily in a infinte while loop
i have a while loop as my main function. within it i check several IF statements and call functions accordingly. one particular function i dont want to call if it has been run already within the last ...
0
votes
1answer
626 views
How to write java program in SIKULI?
I have recorded the GUI desktop application using SIKULI as below:
App.open ("C:\\Program Files\\acd\\bin\\VPNClient.exe")
sleep(1)
type ("mganda1")
sleep(1)
click( ) //click OK
I want to convert ...
-4
votes
0answers
65 views
List of open source window automation tools [closed]
Please suggest me some Window automation tools which are open source and integrable with c# or java
Many thanks