Re: [Sikuli-driver] [Question #244279]: How to get variable text from application screen and store that value in Excel in Rows

2014-02-24 Thread Eugene S
Question #244279 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/244279

Eugene S requested more information:
So what exactly are you asking about:

1. How to copy value using Sikuli
2. How to write to excel file using Python?
2. How to compare value with another value stored in Excel?

-- 
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@lists.launchpad.net
Unsubscribe : https://launchpad.net/~sikuli-driver
More help   : https://help.launchpad.net/ListHelp


Re: [Sikuli-driver] [Question #244279]: How to get variable text from application screen and store that value in Excel in Rows

2014-02-24 Thread RaiMan
Question #244279 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/244279

Status: Open = Answered

RaiMan proposed the following answer:
For the convenient handling of Excel sheets in SikuliX (Jython) have a
look at modules xlrd, xlwt, ... faq 2208

Since then the numbers come as text from the Excel sheet, you have to
again capture the number from the screen as text (either as comment #1
suggests or using Sikuli's OCR feature Region.text())

-- 
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@lists.launchpad.net
Unsubscribe : https://launchpad.net/~sikuli-driver
More help   : https://help.launchpad.net/ListHelp


Re: [Sikuli-driver] [Question #244279]: How to get variable text from application screen and store that value in Excel in Rows

2014-02-23 Thread kiran maroju
Question #244279 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/244279

Status: Answered = Open

kiran maroju is still having a problem:
Eugene, 
 i want to Insert the number from screen into Excel, automatically for each 
transaction made by Sikuli tool.

Afterthat i want to compare those numbers from Excel with the numbers
displayed in in other screen.

-- 
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@lists.launchpad.net
Unsubscribe : https://launchpad.net/~sikuli-driver
More help   : https://help.launchpad.net/ListHelp


Re: [Sikuli-driver] [Question #244279]: How to get variable text from application screen and store that value in Excel in Rows

2014-02-22 Thread Eugene S
Question #244279 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/244279

Eugene S requested more information:
Hi,

Are you asking how to copy a number or how to insert it into an Excel document?
Also, about the other number you want to compare to.. Where it is located?

-- 
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@lists.launchpad.net
Unsubscribe : https://launchpad.net/~sikuli-driver
More help   : https://help.launchpad.net/ListHelp


[Sikuli-driver] [Question #244279]: How to get variable text from application screen and store that value in Excel in Rows

2014-02-20 Thread kiran maroju
New question #244279 on Sikuli:
https://answers.launchpad.net/sikuli/+question/244279

Hi, 

We use invoice generation application, in which it generates different invoice 
number for each invoice.

So i want to get that value into Excel sheet.

And also i want to compare that invoice number from that with number in screen 
in another application screen.

How can i do that?
Please help me



-- 
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@lists.launchpad.net
Unsubscribe : https://launchpad.net/~sikuli-driver
More help   : https://help.launchpad.net/ListHelp


Re: [Sikuli-driver] [Question #244279]: How to get variable text from application screen and store that value in Excel in Rows

2014-02-20 Thread obiwan-92
Question #244279 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/244279

Status: Open = Answered

obiwan-92 proposed the following answer:
Hello,

First select the text you want capture with your mouse (by a double click, for 
example), then :
type('c', KeyModifier.CTRL) # type a classic CTRL + C
text = Env.getClipboard() # get the value saved in the clipboard
# give the focus where you want to write the text
paste(text)

Hope it's help.
Regards.

-- 
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@lists.launchpad.net
Unsubscribe : https://launchpad.net/~sikuli-driver
More help   : https://help.launchpad.net/ListHelp