Re: [Sikuli-driver] [Question #706170]: [2.0.5] after changing a method imported inside another method, IDE restart needed

2023-04-10 Thread RaiMan
Question #706170 on SikuliX changed: https://answers.launchpad.net/sikuli/+question/706170 Status: Open => Answered RaiMan proposed the following answer: BTW: from sikuli import * import sys ... not needed in main script --- possible solution: - import everything in main - use the deeper

Re: [Sikuli-driver] [Question #706170]: [2.0.5] after changing a method imported inside another method, IDE restart needed

2023-04-10 Thread RaiMan
Question #706170 on SikuliX changed: https://answers.launchpad.net/sikuli/+question/706170 Summary changed to: [2.0.5] after changing a method imported inside another method, IDE restart needed Description changed to: confirmed: auto reload for imported methods only works for the 1st level

[Sikuli-driver] [Question #706170]: Sikuli 2.0.5 after changing a method inside another method, restart needed

2023-04-10 Thread Filipe Barbosa
New question #706170 on SikuliX: https://answers.launchpad.net/sikuli/+question/706170 this is my code: _ #main.sikuli from sikuli import * import sys import sub1 sub1.dotest1() _ #sub1.sikuli from sikuli import * import

Re: [Sikuli-driver] [Question #705963]: Automated GUI Testing

2023-04-10 Thread Raúl Muñoz
Question #705963 on SikuliX changed: https://answers.launchpad.net/sikuli/+question/705963 Raúl Muñoz posted a new comment: Hi, the idea of using RobotFrameWork was a proposal of a workmate but I prefer to use SikuliX IDE as you mention, I see it more suitable, I deal your point of view with my

Re: [Sikuli-driver] [Question #706107]: SikuliX 2.0.5 on Ubuntu 22.04 OS. Please Guide me with the steps.

2023-04-10 Thread RaiMan
Question #706107 on SikuliX changed: https://answers.launchpad.net/sikuli/+question/706107 Status: Open => Answered RaiMan proposed the following answer: start from a terminal: java -jar /sikulixidejar -v You should see startup log and possible problems -- You received this question

Re: [Sikuli-driver] [Question #705863]: Sikulix 2.0.5 I want use requests (HTTP for Humans)

2023-04-10 Thread RaiMan
Question #705863 on SikuliX changed: https://answers.launchpad.net/sikuli/+question/705863 Status: Open => Answered RaiMan proposed the following answer: with for e in sys.path: print e you can show the current content of sys.path. You should see, that Jython/Lib is already there (when

Re: [Sikuli-driver] [Question #705863]: Sikulix 2.0.5 I want use requests (HTTP for Humans)

2023-04-10 Thread RaiMan
Question #705863 on SikuliX changed: https://answers.launchpad.net/sikuli/+question/705863 RaiMan proposed the following answer: with for e in sys.path: print e you can show the current content of sys.path. You should see, that Jython/Lib is already there (when using SikulixIDE). in sites.txt

Re: [Sikuli-driver] [Question #706168]: i want the software to press the buttons shown on the screen, but i dont know how

2023-04-10 Thread RaiMan
Question #706168 on SikuliX changed: https://answers.launchpad.net/sikuli/+question/706168 Status: Open => Answered RaiMan proposed the following answer: if exists("key on the screen"): click() exists returns a match-region if the image is found on screen. click() clicks in the middle

Re: [Sikuli-driver] [Question #705963]: Automated GUI Testing

2023-04-10 Thread RaiMan
Question #705963 on SikuliX changed: https://answers.launchpad.net/sikuli/+question/705963 RaiMan posted a new comment: I do not understand, why you want to use RobotFramework (using sikulilibrary). Using scripts in the SikuliX IDE and running them from command line is usually enough for

Re: [Sikuli-driver] [Question #705963]: Automated GUI Testing

2023-04-10 Thread Raúl Muñoz
Question #705963 on SikuliX changed: https://answers.launchpad.net/sikuli/+question/705963 Status: Answered => Solved Raúl Muñoz confirmed that the question is solved: Hi RaiMan, I am working on a virtual platform with a linux distribution. Some progress in sikulixide has been done,

[Sikuli-driver] [Question #706168]: i want the software to press the buttons shown on the screen, but i dont know how

2023-04-10 Thread Nali Rebwar Abdulla
New question #706168 on SikuliX: https://answers.launchpad.net/sikuli/+question/706168 i am trying to automate pressing the buttons in a game, when i used it i did the 'if exists("key on the screen"): type(Key."key"). I i really am not sure how this software works i need help -- You received