Re: [Sikuli-driver] [Question #645781]: Inconsistency with type?

2017-07-05 Thread masuo
Question #645781 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/645781 Status: Open => Answered masuo proposed the following answer: click url text box and then type url strings? it may be necessary wait time between click() and type(). click("image1.png") sleep(3) type("h

Re: [Sikuli-driver] [Question #645781]: Inconsistency with type?

2017-07-05 Thread tester
Question #645781 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/645781 Status: Answered => Open tester is still having a problem: I can't copy and paste onto the screen - I am using a VNC server to remote control an iOS device. -- You received this question notification b

Re: [Sikuli-driver] [Question #645517]: How to find a text on flash webpage using java

2017-07-05 Thread vignesh
Question #645517 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/645517 Status: Answered => Open vignesh is still having a problem: oh..then that was my fault.. I was doing well with sikuli 1.0.1 upto now. For OCR Text feature, i am trying to migrate from 1.0.1 to 1.1.1. S

Re: [Sikuli-driver] [Question #645517]: How to find a text on flash webpage using java

2017-07-05 Thread RaiMan
Question #645517 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/645517 Status: Open => Answered RaiMan proposed the following answer: if a libs folder is created in C:/Sikuli, then you are not using 1.1.1 see comment #10 -- You received this question notification because

Re: [Sikuli-driver] [Question #645517]: How to find a text on flash webpage using java

2017-07-05 Thread vignesh
Question #645517 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/645517 Status: Answered => Open vignesh is still having a problem: Yes, I am using clean the version 1.1.1. Deleted the libs folder in C:/Sikuli. Then tried running the script. libs folder created without "te

[Sikuli-driver] [Bug 1687013] Re: Cannot open xlrd module in Sikuli

2017-07-05 Thread RaiMan
book = xlrd.open_workbook('Excel.sikuli/myfile.xls') worksheet = workbook.sheet_by_name('Sheet 1') since you named your xls-object book = xlrd.open_workbook('Excel.sikuli/myfile.xls') you have to use worksheet = book.sheet_by_name('Sheet 1') Sorry, but this is either basic Python knowledge or c

[Sikuli-driver] [Bug 1687013] Re: Cannot open xlrd module in Sikuli

2017-07-05 Thread Jp17
Hi RaiMan, I have install xlrd but when I run this code: import xlrd book = xlrd.open_workbook('Excel.sikuli/myfile.xls') worksheet = workbook.sheet_by_name('Sheet 1') sheet.cell(0,0).value there is an error says:[error] NameError ( name 'workbook' is not defined ) I am using Sikuli 1.1.1, Pyt

Re: [Sikuli-driver] [Question #646240]: Run tests from Window Command in background

2017-07-05 Thread masuo
Question #646240 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/646240 Status: Open => Answered masuo proposed the following answer: There is no such option. If you don't want SikuliX to use your screen, run SikuliX at another machine. Either physical machine or virtual mac

Re: [Sikuli-driver] [Question #646093]: Run Sikuli on Jenkins Window Batch Command Issue

2017-07-05 Thread RaiMan
Question #646093 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/646093 RaiMan proposed the following answer: Please be sure you have read and understood: - http://www.sikulix.com/quickstart/ - http://sikulix-2014.readthedocs.io/en/latest/basicinfo.html#some-general-aspects - h

Re: [Sikuli-driver] [Question #646093]: Run Sikuli on Jenkins Window Batch Command Issue

2017-07-05 Thread Jp17
Question #646093 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/646093 Jp17 posted a new comment: Hi RaiMan, I have changed it to version 1.1.1 following is my code in the Jenkins Window Batch Command: cd C:\SikuliX\ C:\SikuliX\Sikuli-IDE-w.bat -r TestFolder.sikuli I ran a bu

[Sikuli-driver] [Question #646240]: Run tests from Window Command in background

2017-07-05 Thread Jp17
New question #646240 on Sikuli: https://answers.launchpad.net/sikuli/+question/646240 Hi, I know you can run tests from window command without open the IDE but is there a option I can use to not show the actions on my screen? because when I use -r I can still see clicks on screen. Thanks -