Re: [Sikuli-driver] [Question #665646]: how to install ocr but already installed sikuli with options 1 and 2 missed 3

2018-04-03 Thread Prabhakaran
Question #665646 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/665646

Status: Answered => Solved

Prabhakaran confirmed that the question is solved:
Thanks RaiMan, that solved my question.

-- 
You received this question notification because your team Sikuli Drivers
is an answer contact for Sikuli.

___
Mailing list: https://launchpad.net/~sikuli-driver
Post to : sikuli-driver@lists.launchpad.net
Unsubscribe : https://launchpad.net/~sikuli-driver
More help   : https://help.launchpad.net/ListHelp


Re: [Sikuli-driver] [Question #665646]: how to install ocr but already installed sikuli with options 1 and 2 missed 3

2018-03-19 Thread RaiMan
Question #665646 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/665646

Status: Open => Answered

RaiMan proposed the following answer:
Java programs using Sikuli features have to run on the machine that has
the target screen attached.

So if you want to automate/test a node machine using SikuliX, the node
machine has to have Java and SikuliX available on that machine and the
programs using SikuliX have to run there.

Another option is to run a VNCServer on the node machine and access the
node machine from the hub system via VNC feture of SikuliX.

BTW:
s.wait(common driver/some_img,10);
s.find(common drive/some_img).click();

can be (only one search):
s.click(s.wait(common driver/some_img,10));

Another simplification is to use the imagePath feature, so you only once 
specify the location of the images and then use
s.click(s.wait(some_img,10));

-- 
You received this question notification because your team Sikuli Drivers
is an answer contact for Sikuli.

___
Mailing list: https://launchpad.net/~sikuli-driver
Post to : sikuli-driver@lists.launchpad.net
Unsubscribe : https://launchpad.net/~sikuli-driver
More help   : https://help.launchpad.net/ListHelp


Re: [Sikuli-driver] [Question #665646]: how to install ocr but already installed sikuli with options 1 and 2 missed 3

2018-03-18 Thread Prabhakaran
Question #665646 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/665646

Status: Answered => Open

Prabhakaran is still having a problem:
Great,

Point: 2 
In Java Project by using selenium web driver jars, Selenium Standalone 
jar(Grid), TestNG.jar we can automate hub and node machine browsers. after 
navigated to URL, want to handle applet it's running out of the browser. so 
next is Sikuli lines 
Screen s= new Screen(); 
s.wait(common driver/some_img,10)
s.find(common drive/some_img).click();
will it work on node machine? or am I want to install Sikuli on the hub and all 
node machines. 

Grid Note: Hub (machine1)  running Java project code, Nodes(machine2, machine3) 
all the machines having access to Common drive/some_img

-- 
You received this question notification because your team Sikuli Drivers
is an answer contact for Sikuli.

___
Mailing list: https://launchpad.net/~sikuli-driver
Post to : sikuli-driver@lists.launchpad.net
Unsubscribe : https://launchpad.net/~sikuli-driver
More help   : https://help.launchpad.net/ListHelp


Re: [Sikuli-driver] [Question #665646]: how to install ocr but already installed sikuli with options 1 and 2 missed 3

2018-03-18 Thread RaiMan
Question #665646 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/665646

Status: Open => Answered

RaiMan proposed the following answer:
--- at Ans 1:
with 1.1.2 the text feature is built-in and switched on by default.

--- at Ans 2:
if SikuliX programs/scripts are running on separate machines, they are 
completely independent of each other

--- at Ans 4:
programming in Java with a mature IDE (Eclipse, IntelliJ IDEA, ...) is the most 
straight forward and leanest solution.
for image management you might use the SikuliX IDE in parallel with a strict 
naming convention and using the imagePath feature.

-- 
You received this question notification because your team Sikuli Drivers
is an answer contact for Sikuli.

___
Mailing list: https://launchpad.net/~sikuli-driver
Post to : sikuli-driver@lists.launchpad.net
Unsubscribe : https://launchpad.net/~sikuli-driver
More help   : https://help.launchpad.net/ListHelp


Re: [Sikuli-driver] [Question #665646]: how to install ocr but already installed sikuli with options 1 and 2 missed 3

2018-03-16 Thread Prabhakaran
Question #665646 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/665646

Status: Answered => Open

Prabhakaran is still having a problem:
Hi RaiMan,
Thanks for the short and sweet answers and link. I am doing Automation Tools 
evolution - Forms Application. 

What are the testing types can be achieved by using Sikuli?

Ans: 1 
I have already Installed SikuliX 1.1.1 setup with options and 1 and 2. 
In Installed folder available Sikuli.jar copied and added under Java Project 
with Selenium and TestNG Jars etc,. 
Now, can I directly download and install final version 1.1.2 then select option 
3 alone or any direct download required pls help me? 

Ans: 3
While running my Test script in Multiple machines, At least is possible to 
achieve concurrency between machines? 
I want to stop running few Test Scripts otherwise it may try to change other 
Testscript Preconditions. 
Because I am going to run all the cases multiple machines but against one 
server.

Ans: 4
Friends Please suggest some links and experience. Becuase  Sikuli can be 
implemented in Python Javascript and Java so which way is the best. I am ready 
to learn and implement in any language. 

Once again i am thanking you.

-- 
You received this question notification because your team Sikuli Drivers
is an answer contact for Sikuli.

___
Mailing list: https://launchpad.net/~sikuli-driver
Post to : sikuli-driver@lists.launchpad.net
Unsubscribe : https://launchpad.net/~sikuli-driver
More help   : https://help.launchpad.net/ListHelp


Re: [Sikuli-driver] [Question #665646]: how to install ocr but already installed sikuli with options 1 and 2 missed 3

2018-03-15 Thread RaiMan
Question #665646 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/665646

Status: Open => Answered

RaiMan proposed the following answer:
--- about setup option 3
use the final version 1.1.2:
the text features are now always included and switched on

--- To increase text read ability of OCR
see: https://answers.launchpad.net/sikuli/+question/665345

--- concurrency
usually not possible (a race for mouse/keyboard and screen content)

--- remote
principally possible - find your solution among different approaches (search 
the net)

-- 
You received this question notification because your team Sikuli Drivers
is an answer contact for Sikuli.

___
Mailing list: https://launchpad.net/~sikuli-driver
Post to : sikuli-driver@lists.launchpad.net
Unsubscribe : https://launchpad.net/~sikuli-driver
More help   : https://help.launchpad.net/ListHelp