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 openCalc(self):
    doubleClick("imgs\calculator.png")

def closeCalc(self):
    click("imgs\clickclose.png")

And using it in Sikuli IDE:

def testSum(self):
    self.openCalc()
    type("5+5\n")
    type("c",KEY_CTRL)
    try:
        assert Env.getClipboard()!="10"
    except:
        self.nop()
    self.closeCalc()

Can I do that in some way? How?

Thanks.

link|improve this question

Well what do you mean by library file? you could create a class with those methods defined in it and just call the method from the other class. I guess I dont know enough of what you are asking. – James.Bradley Sep 2 '11 at 20:26
feedback

1 Answer

up vote 0 down vote accepted

I agree with above comment that we should always use class wherever we can... but to answer your question, here is the way to what you want to do -

Called Function File called_fun.sikuli has -

a = "abc"
def hey():
  print(a)

And calling function (whatever name it has) is -

import called_fun
called_fun.hey()

Just make sure that both of the files are in the same folder.

Let me know if you have questions on this.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.