Re: [Sikuli-driver] [Question #645358]: Scrollbar issue

2017-06-28 Thread Eugene S
Question #645358 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/645358 Status: Open => Answered Eugene S proposed the following answer: https://stackoverflow.com/questions/44807713/how-to-scroll-down-with- sikuli/44814863#44814863 -- You received this quest

Re: [Sikuli-driver] [Question #578460]: What tesseract related improvements are expected with Sikuli 2?

2017-03-30 Thread Eugene S
Question #578460 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/578460 Status: Answered => Solved Eugene S confirmed that the question is solved: Thanks RaiMan, that solved my question. -- You received this question notification because your team Sikuli Drivers is

Re: [Sikuli-driver] [Question #561293]: Move to some Coordinates

2017-03-21 Thread Eugene S
Question #561293 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/561293 Status: Open => Answered Eugene S proposed the following answer: Without going too deep into details, it does sound hard (or even impossible) to do. The way Sikuli works is by matching previously sto

Re: [Sikuli-driver] [Question #578460]: What tesseract related improvements are expected with Sikuli 2?

2017-03-21 Thread Eugene S
Question #578460 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/578460 Status: Answered => Open Eugene S is still having a problem: Thanks for quick reply! So basically what you are planning to do is just delegate the Tesseract internals to Sikuli user? Am I ri

[Sikuli-driver] [Question #578460]: What tesseract related improvements are expected with Sikuli 2?

2017-03-21 Thread Eugene S
what improvements you are planning to introduce? I would think that the only way to go is to configure and train tesseract itself. Thanks, Eugene -- You received this question notification because your team Sikuli Drivers is an answer contact for S

Re: [Sikuli-driver] [Question #294454]: can sikuli work invisible?

2016-05-26 Thread Eugene S
Question #294454 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/294454 Status: Open => Answered Eugene S proposed the following answer: No, this is impossible. Sikuli operates by locating visual patterns on the screen. If these patterns won't physically appea

Re: [Sikuli-driver] [Question #293498]: Firefox font and font size

2016-05-09 Thread Eugene S
Question #293498 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/293498 Eugene S posted a new comment: As far as I am aware, the only way to change the font size in FF is using this add-on: https://addons.mozilla.org/en-US/firefox/addon/theme-font-size-changer/ However I am

Re: [Sikuli-driver] [Question #293477]: How to Click on a particular icon and then click on a button that appears on the screen.

2016-05-09 Thread Eugene S
Question #293477 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/293477 Status: Open => Answered Eugene S proposed the following answer: Debug your script and try to understand what actually happens. Use highlight method to see what Sikuli finds on the screen. Try: Scr

Re: [Sikuli-driver] [Question #293475]: how to deal with visual differences between OS?

2016-05-09 Thread Eugene S
Question #293475 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/293475 Status: Open => Answered Eugene S proposed the following answer: Your observation is correct. Since Sikuli uses OpenCV to work with patterns on the screen, it does so on a pixel level. That means t

Re: [Sikuli-driver] [Question #293226]: run sikuli from command line

2016-05-05 Thread Eugene S
Question #293226 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/293226 Eugene S proposed the following answer: Assume the below code is stored in file named "testFile.py" import sys path1 = sys.argv[1] path2 = sys.argv[2] def comparePaths(arg1, arg2): return ar

Re: [Sikuli-driver] [Question #293226]: run sikuli from command line

2016-05-04 Thread Eugene S
Question #293226 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/293226 Eugene S proposed the following answer: I meant something this: def comparePaths(arg1, arg2): return arg1 == arg2 def someFunction(arg1, arg2): #call comparePath() function from here when needed

Re: [Sikuli-driver] [Question #293226]: run sikuli from command line

2016-05-04 Thread Eugene S
Question #293226 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/293226 Eugene S proposed the following answer: Generally, what you ask can look like this (if I understand your question correctly): path1 = "C:\\temp" path2 = "C:\\temp" compareResult =

Re: [Sikuli-driver] [Question #293226]: run sikuli from command line

2016-05-04 Thread Eugene S
Question #293226 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/293226 Eugene S posted a new comment: I'm sorry but I think I lost you here as I am not sure what exactly are you asking. -- You received this question notification because your team Sikuli Drivers is an a

Re: [Sikuli-driver] [Question #293226]: run sikuli from command line

2016-05-04 Thread Eugene S
Question #293226 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/293226 Eugene S proposed the following answer: I am not sure I understand. In the above way you can use the result of the evaluation "path1 == path2" as you wish as it return True or False. So you can as

Re: [Sikuli-driver] [Question #293226]: run sikuli from command line

2016-05-03 Thread Eugene S
Question #293226 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/293226 Status: Needs information => Answered Eugene S proposed the following answer: So something like this? path1 = raw_input('Enter path 1: ') path2 = raw_input('Enter path 2: '

Re: [Sikuli-driver] [Question #293226]: run sikuli from command line

2016-05-03 Thread Eugene S
Question #293226 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/293226 Eugene S requested more information: Do you mean prompts for user input? -- You received this question notification because your team Sikuli Drivers is an answer contact for Sikuli

Re: [Sikuli-driver] [Question #293226]: run sikuli from command line

2016-05-03 Thread Eugene S
Question #293226 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/293226 Status: Open => Needs information Eugene S requested more information: Do you mean prompts for user input? -- You received this question notification because your team Sikuli Drivers is an ans

Re: [Sikuli-driver] [Question #293220]: Can't click when using a Match object - JAVA

2016-05-03 Thread Eugene S
Question #293220 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/293220 Status: Open => Answered Eugene S proposed the following answer: I afraid this is not how it works. What you are trying to do is to click the Iterator object while what you really need to do is cl

Re: [Sikuli-driver] [Question #284449]: How to take action after a certain image flashes a certain number of times?

2016-02-02 Thread Eugene S
Question #284449 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/284449 Status: Open => Needs information Eugene S requested more information: hmm, a time interval that short might be a problem then as what you generally need to do is (without going into details)

Re: [Sikuli-driver] [Question #284449]: How to take action after a certain image flashes a certain number of times?

2016-02-02 Thread Eugene S
Question #284449 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/284449 Status: Open => Needs information Eugene S requested more information: So a "win" button can appear in between and in that case the count restarts? what are the time intervals between

Re: [Sikuli-driver] [Question #284449]: How to take action after a certain image flashes a certain number of times?

2016-02-02 Thread Eugene S
Question #284449 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/284449 Status: Open => Needs information Eugene S requested more information: does it appear and then disappear? what are the intervals? -- You received this question notification because your team Sik

Re: [Sikuli-driver] [Question #284364]: how to use while len(string) > 1 : ??

2016-02-02 Thread Eugene S
Question #284364 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/284364 Status: Open => Needs information Eugene S requested more information: When you say "it doesn't click", are you certain that what you are looking for was actually found? let's s

Re: [Sikuli-driver] [Question #284340]: mmznnafa

2016-02-01 Thread Eugene S
Question #284340 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/284340 Status: Open => Invalid Eugene S rejected the question: This is spam -- You received this question notification because your team Sikuli Drivers is an answer contact for Sik

Re: [Sikuli-driver] [Question #283780]: how to change default screen to a custom region?

2016-01-31 Thread Eugene S
Question #283780 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/283780 Status: Open => Answered Eugene S proposed the following answer: Well, I think I know what your problem is. When you define a region in Sikuli, it remains constant. Meaning that if you moved

Re: [Sikuli-driver] [Question #283780]: how to change default screen to a custom region?

2016-01-31 Thread Eugene S
Question #283780 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/283780 Status: Open => Answered Eugene S proposed the following answer: Look, it is very hard to see the graphics on your screenshot but it does look like something that I explained in my initial post. I w

Re: [Sikuli-driver] [Question #283780]: how to change default screen to a custom region?

2016-01-31 Thread Eugene S
Question #283780 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/283780 Status: Open => Needs information Eugene S requested more information: I guess you're right then and I probably do not understand what is the problem you are facing. Would you mind try and ex

Re: [Sikuli-driver] [Question #284226]: Sikulix, Jenkins, subsequent actions might not work as expected

2016-01-31 Thread Eugene S
Question #284226 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/284226 Status: Open => Needs information Eugene S requested more information: Do you have a multiple screen setup? -- You received this question notification because your team Sikuli Drivers is an ans

[Sikuli-driver] [Bug 1540192] [NEW] Wrong Region parameters description documented

2016-01-31 Thread Eugene S
Public bug reported: It seems that the parameters description is incorrect here: http://doc.sikuli.org/region.html#Region.Region Currently it says: w – height of a rectangle. h – width of a rectangle. And probably should be: h – height of a rectangle. w – width of a rectangle. ** Affects: siku

Re: [Sikuli-driver] [Question #283780]: how to change default screen to a custom region?

2016-01-31 Thread Eugene S
Question #283780 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/283780 Status: Open => Answered Eugene S proposed the following answer: If you want to set a Region to a constant screen location just create a new Region object while passing the pixel parameters to

Re: [Sikuli-driver] [Question #283780]: how to change default screen to a custom region?

2016-01-31 Thread Eugene S
Question #283780 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/283780 Status: Open => Answered Eugene S proposed the following answer: A region can be defined as simple as: customReg = find("pattern.png") then if you want to find something within that regio

Re: [Sikuli-driver] [Question #283903]: sikuli copy and paste

2016-01-29 Thread Eugene S
Question #283903 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/283903 Status: Open => Answered Eugene S proposed the following answer: In Sikuli you can use "type()" or "paste()" functions. Have you tried these? -- You received this question no

Re: [Sikuli-driver] [Question #276532]: A page has the same image in multiple areas. How will the script select the right one?

2015-12-03 Thread Eugene S
Question #276532 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/276532 Eugene S proposed the following answer: Have a look at setROI() methods here: http://doc.sikuli.org/region.html#Region.setROI -- You received this question notification because your team Sikuli Drivers is

Re: [Sikuli-driver] [Question #276532]: A page has the same image in multiple areas. How will the script select the right one?

2015-12-02 Thread Eugene S
Question #276532 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/276532 Status: Open => Answered Eugene S proposed the following answer: If you have more than one image that will match your pattern you will need to perform additional steps to ensure you are picking

Re: [Sikuli-driver] [Question #274718]: IDE command wait("image") not waiting for image to appear before script continues

2015-11-22 Thread Eugene S
Question #274718 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/274718 Eugene S proposed the following answer: Well, the simplest solution to that would be just following an algorithm like that: 1. If "Completed" detected, wait some time (if you know that it just fl

Re: [Sikuli-driver] [Question #274662]: execute other languages scripts in Sikuli's IDE

2015-11-19 Thread Eugene S
Question #274662 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/274662 Status: Open => Answered Eugene S proposed the following answer: This is not an official 100% answer. No, adding anything to your Python path will have no effect on Jython. When launching Sik

Re: [Sikuli-driver] [Question #274647]: command line execution failing

2015-11-19 Thread Eugene S
Question #274647 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/274647 Eugene S proposed the following answer: add wait time and see what happens. maybe it click too early, before the cursor is pointing on the correct object -- You received this question notification because

Re: [Sikuli-driver] [Question #273859]: How can I bypass: AttributeError ( 'reflectedfunction' object has no attribute 'from_iterable' ) ?

2015-11-18 Thread Eugene S
Question #273859 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/273859 Status: Open => Answered Eugene S proposed the following answer: It is unclear from you question what reflectedfunction is? >From the error though you can see that it fail because reflectedfu

Re: [Sikuli-driver] [Question #273986]: Script won't stop

2015-11-18 Thread Eugene S
Question #273986 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/273986 Status: Open => Answered Eugene S proposed the following answer: Tried Ctrl+C? -- You received this question notification because your team Sikuli Drivers is an answer contact for Sik

Re: [Sikuli-driver] [Question #274033]: How to include two images under the same line of code

2015-11-18 Thread Eugene S
Question #274033 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/274033 Status: Open => Answered Eugene S proposed the following answer: while exists("WIN7_START.png") and exists("AppiumTaskBarIcon.png") works fine for me -- You received thi

Re: [Sikuli-driver] [Question #274127]: Not working methods of the class App - close(), focus(),

2015-11-18 Thread Eugene S
Question #274127 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/274127 Eugene S proposed the following answer: You are having this problem because of how you define your firefox variable. When you write: firefox = App.open(r"C:\Program Files (x86)\Mozilla Firefox\firefo

Re: [Sikuli-driver] [Question #274662]: execute other languages scripts in Sikuli's IDE

2015-11-18 Thread Eugene S
Question #274662 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/274662 Status: Open => Answered Eugene S proposed the following answer: Installing Python on your computer should not create any conflict with Sikuli. If you have an external script that you want to run,

Re: [Sikuli-driver] [Question #274766]: SikuliX v1.1.0 Java API supported OS's

2015-11-18 Thread Eugene S
Question #274766 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/274766 Eugene S posted a new comment: Hi, Sikuli works fine fir me in Windows 7 as it should be. Maybe posting your code will help? Cheers -- You received this question notification because your team Sikuli

Re: [Sikuli-driver] [Question #274718]: IDE command wait("image") not waiting for image to appear before script continues

2015-11-18 Thread Eugene S
Question #274718 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/274718 Status: Open => Answered Eugene S proposed the following answer: Hi, That's perhaps a general recommendation on debugging Sikuli scripts rather than the answer to your specific problem but sti

Re: [Sikuli-driver] [Question #274061]: How to Set Up a Basic Loop

2015-11-11 Thread Eugene S
Question #274061 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/274061 Status: Open => Answered Eugene S proposed the following answer: try adding an additional wait just before your: doubleClick(x) It looks that at the moment thsi double click happens immediately af

Re: [Sikuli-driver] [Question #273957]: How to run sikuli script in slow motion using Command line

2015-11-10 Thread Eugene S
Question #273957 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/273957 Eugene S requested more information: I'm sorry but did you read my previous reply? -- You received this question notification because your team Sikuli Drivers is an answer contact for S

Re: [Sikuli-driver] [Question #273957]: How to run sikuli script in slow motion using Command line

2015-11-10 Thread Eugene S
Question #273957 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/273957 Eugene S proposed the following answer: I am sorry but have to be more specific. If you want the script to run slower you can try different techniques. For example: 1. wait for a pattern to appear wait

Re: [Sikuli-driver] [Question #273957]: How to run sikuli script in slow motion using Command line

2015-11-10 Thread Eugene S
Question #273957 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/273957 Eugene S requested more information: I'm sorry, maybe I misunderstood your situation. Do you have a script in a *.py file and you try to run it from command line? -- You received this que

Re: [Sikuli-driver] [Question #273957]: How to run sikuli script in slow motion using Command line

2015-11-10 Thread Eugene S
Question #273957 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/273957 Eugene S proposed the following answer: you should include it in your script file -- You received this question notification because your team Sikuli Drivers is an answer contact for Sikuli

Re: [Sikuli-driver] [Question #273957]: How to run sikuli script in slow motion using Command line

2015-11-09 Thread Eugene S
Question #273957 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/273957 Eugene S proposed the following answer: You asked for a switch that will turn on the slow motion effect like it has in GUI. I think that Settings.ShowActions does that. Please try it. For example

Re: [Sikuli-driver] [Question #273957]: How to run sikuli script in slow motion using Command line

2015-11-09 Thread Eugene S
Question #273957 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/273957 Status: Needs information => Answered Eugene S proposed the following answer: try Settings.ShowActions -- You received this question notification because your team Sikuli Drivers is an answer cont

Re: [Sikuli-driver] [Question #273957]: How to run sikuli script in slow motion using Command line

2015-11-09 Thread Eugene S
Question #273957 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/273957 Status: Open => Needs information Eugene S requested more information: Please provide more details? What do you mean by slow motion? Delays between actions? Mouse movement? -- You received t

Re: [Sikuli-driver] [Question #273982]: Does smaller region make finding image more effective?

2015-11-09 Thread Eugene S
Question #273982 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/273982 Status: Open => Answered Eugene S proposed the following answer: Depends what you mean by "effective". Defining a smaller region will indeed be more effective in terms of search time. Bu

Re: [Sikuli-driver] [Question #273986]: Script won't stop

2015-11-09 Thread Eugene S
Question #273986 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/273986 Status: Open => Needs information Eugene S requested more information: Can you post the code? -- You received this question notification because your team Sikuli Drivers is an answer contact

Re: [Sikuli-driver] [Question #272460]: detecting colors

2015-10-15 Thread Eugene Maslov
Question #272460 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/272460 Status: Open => Answered Eugene Maslov proposed the following answer: Hello Entity, I can help with distinguishing the colors. My findWithColor procedure finds an image with at least one pixel of ex

Re: [Sikuli-driver] [Question #271443]: How can I input a number and accept it as an integer in sikuli?

2015-09-15 Thread Eugene S
Question #271443 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/271443 Status: Open => Answered Eugene S proposed the following answer: what's wrong with the solution I offered? -- You received this question notification because your team Sikuli Drivers is a

Re: [Sikuli-driver] [Question #271443]: How can I input a number and accept it as an integer in sikuli?

2015-09-15 Thread Eugene S
Question #271443 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/271443 Status: Open => Answered Eugene S proposed the following answer: this has nothing to do with Sikuli but... input doesn't have the ability to check the input type. You will have to process it

Re: [Sikuli-driver] [Question #271428]: I would like to compare an image to the screen

2015-09-15 Thread Eugene S
Question #271428 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/271428 Status: Open => Needs information Eugene S requested more information: Hi, Could you please describe more generally what you want to achieve? -- You received this question notification because y

Re: [Sikuli-driver] [Question #271257]: I am not finding the right solution for my code

2015-09-14 Thread Eugene Maslov
Question #271257 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/271257 Eugene Maslov proposed the following answer: Try also highlighting to see the details. And wait(1) after page-down will help avoiding confusions if the browser scrolls the site smoothly and the image is

Re: [Sikuli-driver] [Question #271257]: I am not finding the right solution for my code

2015-09-14 Thread Eugene Maslov
Question #271257 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/271257 Status: Open => Answered Eugene Maslov proposed the following answer: Try setting Settings.MinSimilarity=0.99 or 1.0 at the beginning of your script. Probably there are two similar animals on your p

Re: [Sikuli-driver] [Question #271312]: Compile Individual lines

2015-09-14 Thread Eugene Maslov
Question #271312 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/271312 Eugene Maslov posted a new comment: Hi Jesus, Just a suggestion of a trick. To debug single lines, or the bottom of broken test, I write at the beginning of the script: if False: pass # then all the

Re: [Sikuli-driver] [Question #271257]: I am not finding the right solution for my code

2015-09-10 Thread Eugene Maslov
Question #271257 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/271257 Eugene Maslov posted a new comment: Really tried my code??? There are no page-downs in it. The output is 27 lines "[log] TYPE "#DOWN."", then "Hurray" box appears when "Cre

Re: [Sikuli-driver] [Question #271257]: I am not finding the right solution for my code

2015-09-10 Thread Eugene Maslov
Question #271257 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/271257 Status: Open => Answered Eugene Maslov proposed the following answer: A trick promoting web sites? It works on my Chrome without problems on the page of this question , I just unindented the last

Re: [Sikuli-driver] [Question #271036]: Text Search and OCR / Sikuli's Text Recognition

2015-09-02 Thread Eugene S
Question #271036 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/271036 Status: Open => Answered Eugene S proposed the following answer: Hi, You can use text recognition like that: Settings.OcrTextRead = true; Region sc = new Screen(0); sc.findText("text"

Re: [Sikuli-driver] [Question #270620]: error with sikuli

2015-08-23 Thread Eugene S
Question #270620 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/270620 Status: Open => Answered Eugene S proposed the following answer: That looks like your image just was not found on the screen. -- You received this question notification because you are a member

Re: [Sikuli-driver] [Question #270585]: Fundamental question on using Sikuli

2015-08-20 Thread Eugene Maslov
Question #270585 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/270585 Eugene Maslov proposed the following answer: click("start.png") # make png of start btn with Sikuli IDE wait(1) type("Word") wait(3) type(Key.ENTER) wait("file.png", 15) # make

Re: [Sikuli-driver] [Question #270546]: Comparing texts between 2 versions of my application

2015-08-20 Thread Eugene Maslov
Question #270546 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/270546 Eugene Maslov proposed the following answer: Well, compare the tables with Python cell by cell. content1 = open('d:/file1.txt', 'r').readlines() content2 = open('d:/file2.txt'

Re: [Sikuli-driver] [Question #270546]: Comparing texts between 2 versions of my application

2015-08-20 Thread Eugene Maslov
Question #270546 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/270546 Eugene Maslov proposed the following answer: correction for the last line print "cell "+str(ln)+":"+str(cell)+ " is different" -- You received this question notification beca

Re: [Sikuli-driver] [Question #270564]: How to read a text using a image in SIKULI?

2015-08-19 Thread Eugene S
Question #270564 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/270564 Status: Open => Answered Eugene S proposed the following answer: Not sure what you mean. Do you want to find an object using text on the screen? Text recognition feature is not 100% reliable at

Re: [Sikuli-driver] [Question #236452]: Continue script execution despite error

2015-08-19 Thread Eugene S
Question #236452 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/236452 Eugene S posted a new comment: please start a new question -- You received this question notification because you are a member of Sikuli Drivers, which is an answer contact for Sikuli

Re: [Sikuli-driver] [Question #270546]: Comparing texts between 2 versions of my application

2015-08-19 Thread Eugene Maslov
Question #270546 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/270546 Eugene Maslov proposed the following answer: The files can be compared with Python features, there is no need to call Sikuli functions for that. content1 = open('d:/file1.txt', 'r').re

Re: [Sikuli-driver] [Question #270543]: Running tests with multiple sets of data

2015-08-19 Thread Eugene Maslov
Question #270543 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/270543 Eugene Maslov proposed the following answer: Hi Sahil, I run data driven tests with python unittest. It's possible to modify __init__ procedure of the test template, that all the tests are derived fro

Re: [Sikuli-driver] [Question #269898]: Project names confusion

2015-08-18 Thread Eugene S
correct pom configuration? Thanks in advance!! Eugene S -- You received this question notification because you are a member of Sikuli Drivers, which is an answer contact for Sikuli. ___ Mailing list: https://launchpad.net/~sikuli-driver Post to

Re: [Sikuli-driver] [Question #269933]: Selecting text randomly

2015-08-18 Thread Eugene S
Question #269933 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/269933 Status: Open => Needs information Eugene S requested more information: I think I understand the question but you didn't say what's currently wrong with this code example that you att

Re: [Sikuli-driver] [Question #269933]: Selecting text randomly

2015-08-17 Thread Eugene S
Question #269933 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/269933 Status: Open => Answered Eugene S proposed the following answer: Hi, I am still having a trouble understanding what is that you are trying to do and what doesn't work for you. You started talki

Re: [Sikuli-driver] [Question #270374]: Questions on functional capabilities of Sikuli

2015-08-14 Thread Eugene S
Question #270374 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/270374 Status: Open => Answered Eugene S proposed the following answer: Regarding all your text recognition questions Sikuli is using Tesseract OCR which is a well known OCR engine. It has its limitation

Re: [Sikuli-driver] [Question #270344]: Problem with maven and org.sikuli.script

2015-08-13 Thread Eugene S
Question #270344 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/270344 Status: Open => Answered Eugene S proposed the following answer: That should suffice: com.sikulix sikulixapi 1.1.0-SNAPSHOT -- You received this question notification because you are a member

Re: [Sikuli-driver] [Question #270186]: Linux highlight

2015-08-11 Thread Eugene Maslov
Question #270186 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/270186 Eugene Maslov proposed the following answer: Hi, I use under Linux the following function. Also it often helps to avoid problems under Windows, because highlight() always kills extended menus under Windows

Re: [Sikuli-driver] [Question #105543]: How to paste individual fields from external list

2015-08-06 Thread Eugene S
Question #105543 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/105543 Eugene S posted a new comment: Please post your new question separately. -- You received this question notification because you are a member of Sikuli Drivers, which is an answer contact for Sikuli

Re: [Sikuli-driver] [Question #270046]: user debug statement doesnt work

2015-08-05 Thread Eugene S
Question #270046 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/270046 Status: Open => Answered Eugene S proposed the following answer: Did you import sikuli library properly? from sikuli import * -- You received this question notification because you are a member

Re: [Sikuli-driver] [Question #270046]: user debug statement doesnt work

2015-08-05 Thread Eugene S
Question #270046 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/270046 Status: Open => Answered Eugene S proposed the following answer: I think you should use setUserLogFile without the Debug class. -- You received this question notification because you are a member

Re: [Sikuli-driver] [Question #269984]: Using Sikulii for a desktop application

2015-08-04 Thread Eugene S
Question #269984 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/269984 Status: Open => Answered Eugene S proposed the following answer: Please start from read through the documentation and examples. Then you will have to decide whether you'd like to use SIkuli IDE

Re: [Sikuli-driver] [Question #269702]: Sikuli not pausing the script

2015-08-04 Thread Eugene Maslov
Question #269702 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/269702 Status: Open => Answered Eugene Maslov proposed the following answer: I haven't this problem. My start script is similar, though not importing time module, as Sikuli imports it itself. I trie

Re: [Sikuli-driver] [Question #269975]: Sikuli not clicking on images while running application with adminstrator privileges

2015-08-04 Thread Eugene S
Question #269975 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/269975 Status: Open => Needs information Eugene S requested more information: ok, but the question here is why this button wasn't clicked. So was it certainly located? Try to highlight it, like: re

Re: [Sikuli-driver] [Question #269933]: Selecting text randomly

2015-08-04 Thread Eugene S
Question #269933 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/269933 Status: Needs information => Answered Eugene S proposed the following answer: Yes, such scenarios can be automated with Sikuli. It might be hard working with multiple areas, especially if you want

Re: [Sikuli-driver] [Question #269975]: Sikuli not clicking on images while running application with adminstrator privileges

2015-08-04 Thread Eugene S
Question #269975 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/269975 Status: Open => Needs information Eugene S requested more information: Do you get any errors? logs? -- You received this question notification because you are a member of Sikuli Drivers, which is

Re: [Sikuli-driver] [Question #269933]: Selecting text randomly

2015-08-03 Thread Eugene S
Question #269933 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/269933 Status: Open => Needs information Eugene S requested more information: The text selection process that you described is not clear. Please describe it step by step. Do you just click once on the text

Re: [Sikuli-driver] [Question #269936]: How to select textbox next to fixed text using sikuli in Java?

2015-08-03 Thread Eugene S
Question #269936 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/269936 Status: Open => Answered Eugene S proposed the following answer: The most straightforward way to do that will be locating that constant text label and storing. Then you can define the region you

Re: [Sikuli-driver] [Question #269898]: Project names confusion

2015-08-02 Thread Eugene S
Question #269898 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/269898 Status: Answered => Open Eugene S is still having a problem: Thank you for your answers RaiMan! Yes, I am aware of these coordinates that you mentioned. Just wanted to make sure that's

[Sikuli-driver] [Question #269898]: Project names confusion

2015-08-01 Thread Eugene S
configuration? Thanks in advance! Eugene S -- You received this question notification because you are a member of Sikuli Drivers, which is an answer contact for Sikuli. ___ Mailing list: https://launchpad.net/~sikuli-driver Post to : sikuli-driver

[Sikuli-driver] [Bug 1480058] Re: print the copied content by env.getclipboard noe working

2015-07-31 Thread Eugene S
I suggest asking your question in the users forum before raising a defect. First of all, read the documentation (or other questions in the user forum) carefully. The key combination that you need to execute should be: type("a", KeyModifier.CTRL) type("c", KeyModifier.CTRL) Second, in latest vers

Re: [Sikuli-driver] [Question #269834]: import issue

2015-07-30 Thread Eugene S
Question #269834 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/269834 Status: Open => Answered Eugene S proposed the following answer: As far as I know, the files themselves must be *.py files and not *.sikuli. Would you try that? -- You received this quest

Re: [Sikuli-driver] [Question #269837]: Looking for a way to export a runnable Sikuli

2015-07-30 Thread Eugene S
Question #269837 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/269837 Status: Open => Answered Eugene S proposed the following answer: Assuming your friend has the SikuliX installed on his PC, you could send him a simple script that he can execute form the command l

Re: [Sikuli-driver] [Question #269834]: import issue

2015-07-30 Thread Eugene S
Question #269834 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/269834 Status: Open => Needs information Eugene S requested more information: Are you running them from command line or IDE? -- You received this question notification because you are a member of Sik

Re: [Sikuli-driver] [Question #269784]: copy text from text box

2015-07-30 Thread Eugene S
Question #269784 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/269784 Status: Open => Answered Eugene S proposed the following answer: SikuliX-2014 is a multi module project: https://github.com/RaiMan/SikuliX-2014 Clone it from there and choose the project you

Re: [Sikuli-driver] [Question #269784]: copy text from text box

2015-07-30 Thread Eugene S
Question #269784 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/269784 Eugene S posted a new comment: I use Sikuli API maven project as well and it works fine for me. Just make sure that all the files has been downloaded. For example in Eclipse, I right click on the project

Re: [Sikuli-driver] [Question #269784]: copy text from text box

2015-07-30 Thread Eugene S
Question #269784 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/269784 Status: Open => Answered Eugene S proposed the following answer: You have to keep in mind that Sikuli doesn't care how do you call the type method. It will just simulate manual action on the c

Re: [Sikuli-driver] [Question #269784]: copy text from text box

2015-07-29 Thread Eugene S
Question #269784 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/269784 Status: Open => Answered Eugene S proposed the following answer: Not sure how are you trying to execute "type" in your example. It can't be a standalone command. It must be attached

Re: [Sikuli-driver] [Question #269768]: kordinaty cursor

2015-07-28 Thread Eugene S
Question #269768 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/269768 Status: Open => Answered Eugene S proposed the following answer: Env.getMouseLocation() returns the current mouse pointer location. -- You received this question notification because you are a mem

Re: [Sikuli-driver] [Question #269747]: Task Scheduler - taskeng.exe blocking Sikuli

2015-07-28 Thread Eugene S
Question #269747 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/269747 Status: Open => Needs information Eugene S requested more information: How do you run your script from the task scheduler? do you configure a command line string that launches your script? --

Re: [Sikuli-driver] [Question #269704]: setShowActions or Settings configuration not taking effect

2015-07-28 Thread Eugene S
Question #269704 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/269704 Eugene S posted a new comment: No, I was using another version for testing. -- You received this question notification because you are a member of Sikuli Drivers, which is an answer contact for Sikuli

  1   2   3   4   5   6   >