[Sikuli-driver] [Question #323998]: how to develop testng case with java program which run on linux

2016-08-04 Thread sunailing
New question #323998 on Sikuli:
https://answers.launchpad.net/sikuli/+question/323998

Hi,

i want to develop a test script with java, and with testng framework,; 
the script will do that open terminal and start a server  on linux 
so , i don't know if  the class Screen can capture picture on linux or not ?

-- 
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


[Sikuli-driver] [Question #323987]: Defined function is looping

2016-08-04 Thread David
New question #323987 on Sikuli:
https://answers.launchpad.net/sikuli/+question/323987

Hi
I am having an issue that makes no sense to me. The defined function ClickVideo 
is looping. 

Yes, I do have a recursive call. But this is not where it is looping. I read on 
another post your comments about recursive calls. This call is only to address 
an error should one appear.

I added popups through out my code so I could follow it as it ran. So as it 
runs, this is the popups I am getting (9, 1, 2, (3,4,5, or 6), 11; 1, 2, 
(3,4,5, or 6), 11; 1, 2, (3,4,5, or 6), 11; etc.)
What I was expecting was (9, 1, 2, (3,4,5, or 6), 11; 9, 1, 2, (3,4,5, or 6), 
11; etc.). After function runs, I am expecting it to go back to waiting for a 
change to region R1.

That says to me that my function is looping. Should I have a terminator on my 
function?



R1 = find(Pattern("1470246838908.png").similar(0.90))
R2 = find("1470253780841.png")
B1 = Region(R2.x+21, R2.y+18, 72, 77)
B2 = Region(R2.x+104, R2.y+18, 72, 77)
B3 = Region(R2.x+190, R2.y+18, 72, 77)
B4 = Region(R2.x+273, R2.y+18, 72, 77)
Watched = 0
vSet = 1

# Change video set
def ClickSet(event):
global vSets
if vSets == 2:
click("1470278088532.png")
if vSets == 3:
click("1470278122703.png")
if vSets == 4:
click("1470278147590.png")
if vSets == 5:
click("1470278175919.png")
if vSets == 6:
click("1470278203403.png")
wait(5)

# Click next video
def ClickVideo(event):
#R1.stopObserver()
global Watched
Watched = Watched + 1
popup("1")
if exists("1470276113431.png"):
popup("2")
if B1.exists("1470266612550.png"):
B2.click()
popup("3")
elif B2.exists("1470266612550.png"):
B3.click()
popup("4")
elif B3.exists("1470266612550.png"):
B4.click()
popup("5")
elif B4.exists("1470266612550.png"):
click("1470275832696.png")
wait(5)
B1.click()
popup("6")
else: 
popup("Nothing is playing now")
exit()
else:
popup("7")
#start next set
vSet = vSet + 1
ClickSet()
B1.click()
wait(5)
popup("11")
#if error appears play next video
if exists("1469490503735.png"):
Watched = Watched - 1
popup("8")
ClickVideo()

#Watch 500 videos
while Watched <= 500:
popup("9")

R1.onChange(50, ClickVideo)
R1.observe()

-- 
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 #323222]: How do I get Observe to pause?

2016-08-04 Thread David
Question #323222 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/323222

Status: Open => Solved

David confirmed that the question is solved:
I found my problem. I had a while when I should have had an if exists

-- 
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


[Sikuli-driver] [Bug 1609936] [NEW] Autoset checkboxes on mouse hover in Settings

2016-08-04 Thread Alex Lunyov
Public bug reported:

Strange behaviour in the Settings box was noticed.

1. Launch Sikuli IDE (both stable and last nightly)
2. Go to Settings → more Options
3. Clear some of the checkboxes in the groups "IDE Layout" or "Messages to show"
4. Move the mouse over "Activate the new layout" checkbox area.

The bug raises: selfchecking previously cleared checkboxes.

** Affects: sikuli
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Sikuli
Drivers, which is subscribed to Sikuli.
https://bugs.launchpad.net/bugs/1609936

Title:
  Autoset checkboxes on mouse hover in Settings

Status in Sikuli:
  New

Bug description:
  Strange behaviour in the Settings box was noticed.

  1. Launch Sikuli IDE (both stable and last nightly)
  2. Go to Settings → more Options
  3. Clear some of the checkboxes in the groups "IDE Layout" or "Messages to 
show"
  4. Move the mouse over "Activate the new layout" checkbox area.

  The bug raises: selfchecking previously cleared checkboxes.

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/1609936/+subscriptions

___
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 #323222]: How do I get Observe to pause?

2016-08-04 Thread David
New question #323222 on Sikuli:
https://answers.launchpad.net/sikuli/+question/323222

I have a script that is working in every way but I can't get Observe() to pause 
or end and restart while actions take place.

I am waiting for a change onscreen to occur. When it does, It fires off the 
ClickVideo() event. This event also changes the screen briefly. So I need 
Observer to stop, for about 5 seconds, while this happens then start up again.

I tried using wait(5) in several key spots, but this wasn't pausing Observe().  
I then added a stopObserver() in a couple of places but couldn't get that to 
work.

Can you tell me what I am doing wrong?

R1 = find(Pattern("1470246838908.png").similar(0.90))
R2 = find("1470253780841.png")
B1 = Region(R2.x+21, R2.y+18, 72, 77)
B2 = Region(R2.x+104, R2.y+18, 72, 77)
B3 = Region(R2.x+190, R2.y+18, 72, 77)
B4 = Region(R2.x+273, R2.y+18, 72, 77)
Watched = 0
vSet = 1

#Change video set
def ClickSet(event):
global vSets
if vSets == 2:
click("1470278088532.png")
if vSets == 3:
click("1470278122703.png")
if vSets == 4:
click("1470278147590.png")
if vSets == 5:
click("1470278175919.png")
if vSets == 6:
click("1470278203403.png")
wait(5)

#click next video
def ClickVideo(event):
R1.stopObserver()
global Watched
Watched = Watched + 1
while exists("1470276113431.png"):
if B1.exists("1470266612550.png"):
B2.click()
if B2.exists("1470266612550.png"):
B3.click()
if B3.exists("1470266612550.png"):
B4.click()
if B4.exists("1470266612550.png"):
click("1470275832696.png")
wait(3)
B1.click()
if not exists("1470276653899.png"):
#start next set
vSet = vSet + 1
ClickSet()
B1.click()
wait(5) 
if exists("1469490503735.png"):
Watched = Watched - 1
ClickVideo()


while Watched <= 500:
wait(5)
#watch for change in status
R1.onChange(50, ClickVideo)
R1.observe()

Please and Thank 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


[Sikuli-driver] [Question #322930]: Quickbooks phone number usa Intuit@(1-866-388-3501)quickbooks Tech Support Phone Number vides online support for all USA/CANADA clients

2016-08-04 Thread CHANDUB
New question #322930 on Sikuli:
https://answers.launchpad.net/sikuli/+question/322930

Quickbooks phone number usa Intuit@(1-866-388-3501)quickbooks Tech Support 
Phone Number vides online support for all USA/CANADA clients
QuickbooksPhone number 1866!!388!!3501 Quickbooks Technical Support Phone 
Number QuickbooksCustomer Support Number
QuickbooksPhone number 1866!!388!!3501 Quickbooks Technical Support Phone 
Number QuickbooksCustomer Support Number QB 
Helpline-))1866!388!3501--((Quickbooks   tech .support phone number usa 
Helpline))1866 388 3501--((Quickbooks   tech .support phone number 
Helpline))1-866-388-3501((Quickbooks   tech support phone number 
Helpline))1-866-388-3501((Quickbooks   tech support phone number 
Intuit-(1-866-388-3501)Quickbooks   Tech Support Phone 
NumberIntuit-(1-866-388-3501)Quickbooks   Tech Support Phone Number vides 
online solution for all USA/CANADA clients. For any help of query call 1 866 
388 3501 to get all Quickbooks   account solution. --Call, 1-866-388-3501 for 
all type help by Quickbooks   tech support phone number, Intuit Quickbooks   
Tech Support Phone Number, Quickbooks   Help Desk Phone Number, Quickbooks   
tech support number, Quickbooks   technical support phone number,--- Quickbooks 
  phone number, Quickbooks   technical support number, Quickbooks   support 
phone number, Quickbooks   technical support, Quickbooks   Customer Service 
Phone Number, Quickbooks   Customer Service Number, Quickbooks   Customer 
Support Phone Number, Quickbooks   Customer Support Number, Quickbooks   
Customer Service Helpline Number, Quickbooks   Customer Care Number, Quickbooks 
  support team phone number, - Quickbooks   help number-Quickbooks   
Helpline Number; Quickbooks   help phone number-Quickbooks   Helpline Number, 
Quickbooks   Tech Support Toll free Number, Quickbooks   Support Telephone 
Number, Quickbooks   Tech Support Telephone number, Quickbooks   Tech Support 
contact number, Quickbooks   support contact number, Quickbooks   technical 
support contact number. Call, Quickbooks   tech support phone number, Intuit 
Quickbooks   Tech Support Phone Number, Quickbooks   Help Desk Phone Number, 
Quickbooks   tech support number, Quickbooks   technical support phone number, 
Quickbooks   phone number, Quickbooks   technical support number, Quickbooks   
support phone number. It is very popular toll free number which vide by 
Quickbooks   technical support, Quickbooks   Customer Service Phone Number, 
Quickbooks   Customer Service Number, Quickbooks   Customer Support Phone 
Number, Quickbooks   Customer Support Number, Quickbooks   Customer Service 
Helpline Number, Quickbooks   Customer Care Number, Quickbooks   support team 
phone number. Call, Quickbooks   tech support phone number, Intuit Quickbooks   
Tech Support Phone Number, Quickbooks   Help Desk Phone Number, Quickbooks   
tech support number, Quickbooks   technical support phone number, Quickbooks   
phone number, Quickbooks   technical support number, Quickbooks   support phone 
number, Quickbooks   technical support, Quickbooks   Customer Service Phone 
Number, Quickbooks   Customer Service Number, Quickbooks   Customer Support 
Phone Number, Quickbooks   Customer Support Number, Quickbooks   Customer 
Service Helpline Number, Quickbooks   Customer Care Number, Quickbooks   
support team phone number, Quickbooks   help number-Quickbooks   Helpline 
Number; Quickbooks   help phone number, Quickbooks   Helpline Number, 
Quickbooks   Tech Support Toll free Number, Quickbooks   Support Telephone 
Number, Quickbooks   Tech Support Telephone number, Quickbooks   Tech Support 
contact number, Quickbooks   support contact number, Quickbooks   technical 
support contact number, quickbookssupport phone number, quickbooks
support phone number. quickbookscustomer support phone number Quickbooks   
Support Helpline Number, Quickbooks   contact number Quickbooks   tech support 
phone number Quickbooks   support team phone number Quickbooks   contact number 
1866-388-3501 quickbooks   technical help telephone number, quickbooks   
technical help contact number, quickbooks   technical support contact number, 
quickbooks   contact number, quickbooks   contact phone number, quickbooks   
contact telephone number, quickbooks   24 hour contact number, quickbooks   
customer support contact number, quickbooks   customer service contact number, 
quickbooks   official number, quickbooks   official contact number, quickbooks  
 866 contact number, quickbooks   toll free number, 866 number for quickbooks   
support, quickbooks   24/7 support phone number Quickbookssupport phone 
number,Quickbookssupport phone number,Quickbookshelp phone number, 
Quickbookstechnical support number.Quickbookssupport number, Quickbooks 
   phone number, Quickbookstech support number, Quickbookscustomer 
support number, Quickbookscustomer support phone number, Quickbooks
cu

[Sikuli-driver] [Question #322846]: plz&&&&&basanti ko jaane do yar 1800 919 0992

2016-08-04 Thread zhoombra...@mail.com
New question #322846 on Sikuli:
https://answers.launchpad.net/sikuli/+question/322846

Quickbooks T.E.C.H.N.I.C.A.L s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r 
((1.8.0.0.9.1.9.0.9.9.2)) Quickbooks T.E.C.H s.u.p.p.o.r.t p.h.o.n.e n.u.m.b.e.r
QPML +¦$÷1800-919-0992 quickbooks enterprise technical help phone number 1 
1-800-919-0992, quickbooks enterprise support helpline number 18009190992, 
quickbooks enterprise Pro technical support phone number 1 800 919 0992, 
quickbooks enterprise Pro number1800 919 0992, quickbooks enterprise Pro phone 
number, quickbooks enterprise Pro contact telephone number, quickbooks 
enterprise Pro 24 hour contact number, quickbooks enterprise Pro customer 
support contact number, quickbooks enterprise Pro customer service contact 
number, quickbooks enterprise Pro official number, quickbooks enterprise Pro 
official contact number, quickbooks enterprise Pro 800 contact number, 
quickbooks enterprise Pro toll free number, 800 number for quickbooks 
enterprise Pro support, quickbooks enterprise Pro 24/7 support phone number 
Quickbooks enterprise Pro support phone number,Quickbooks enterprise Pro 
support phone number,Quickbooks enterprise Pro help phone number, Quickbooks 
enterprise Pro technical support number.Quickbooks enterprise Pro support 
number, Quickbooks enterprise Pro phone number, Quickbooks enterprise Pro HELP 
DESK number, Quickbooks enterprise Pro customer support number, Quickbooks 
enterprise Pro customer support phone number, Quickbooks enterprise Pro 
customer service phone number, Quickbooks enterprise Pro customer service phone 
number, Quickbooks enterprise Pro support phone number. Help@Call 
1-800-919-0992/.quickbooks enterprise Pro 24/7 support phone number,quickbooks 
enterprise Pro telephone number for support? call 1800-919-0992@./quickbooks 
enterprise Pro contact number, quickbooks enterprise Pro contact phone number, 
quickbooks enterprise Pro contact telephone number,,telephone number for 
quickbooks enterprise Pro online support,quickbooks enterprise Pro official 
support number,quickbooks enterprise Pro official number,quickbooks enterprise 
Pro official phone number,,,phone number for quickbooks enterprise Pro 
support,,quickbooks enterprise Pro 24/7 support phone number,,quickbooks 
enterprise Pro support number,quickbooks enterprise Pro telephone number for 
support QB SUPPORT ON ((1-800-919-0992)) QUICKBOOKS ENTERPRISE PRO PHONE NUMBER 
AND QUICKBOOKS ENTERPRISE PRO SUPPORT PHONE NUMBER Online Support For 
(((1+800+919+0992)!!! Quickbooks enterprise Pro ((Technical)) Support phone 
number,, Quickbooks enterprise Pro HELP DESK phone number Online Support For 
(((1+800+919+0992)!!! Quickbooks enterprise Pro ((Technical)) Support phone 
number,, Quickbooks enterprise Pro HELP DESK phone number Helpline TECH 
))1-800-919-0992((Quickbooks enterprise Pro technical support phone number 
Quickbooks enterprise Pro phone number QB SUPPORT ON ((1-800-919-0992)) 
QUICKBOOKS ENTERPRISE PRO PHONE NUMBER AND QUICKBOOKS ENTERPRISE PRO SUPPORT 
PHONE NUMBER Quickbooks enterprise Pro Toll Free, Intuit@(1-800-919-0992)@ 
Quickbooks enterprise Pro HELP DESK Phone Number vides online solution for all 
USA/CANADA clients. For any help of query call 1 800 919 0992 to get all 
Quickbooks enterprise Pro account solution. @@Call, 1-800-919-0992 for all type 
help by Quickbooks enterprise Pro HELP DESK phone number, Intuit Quickbooks 
enterprise Pro HELP DESK Phone Number, Quickbooks enterprise Pro Help Desk 
Phone Number, Quickbooks enterprise Pro HELP DESK number, Quickbooks enterprise 
Pro technical support phone number,@@@ Quickbooks enterprise Pro phone number, 
Quickbooks enterprise Pro technical support number, Quickbooks enterprise Pro 
support phone number, Quickbooks enterprise Pro technical support, Quickbooks 
enterprise Pro Customer Service Phone Number, Quickbooks enterprise Pro 
Customer Service Number, Quickbooks enterprise Pro Customer Support Phone 
Number, Quickbooks enterprise Pro Customer Support Number, Quickbooks 
enterprise Pro Customer Service Helpline Number, Quickbooks enterprise Pro 
Customer Care Number, Quickbooks enterprise Pro support team phone number, 
@ Quickbooks enterprise Pro help number-Quickbooks enterprise Pro Helpline 
Number; Quickbooks enterprise Pro help phone number-Quickbooks enterprise Pro 
Helpline Number, Quickbooks enterprise Pro HELP DESK Toll free Number, 
Quickbooks enterprise Pro Support Telephone Number, Quickbooks enterprise Pro 
HELP DESK Telephone number, Quickbooks enterprise Pro HELP DESK contact number, 
Quickbooks enterprise Pro support contact number, Quickbooks enterprise Pro 
technical support contact number. Helpline TECH ))1-800+919+0992(( Quickbooks 
enterprise Pro Enterprise technical support phone number 1-800+919+0992 
Quickbooks enterprise Pro Enterprise POS phone number 1800+919+0992 QB SUPPORT 
ON ((1-800+919+0992)) Quickbooks enterprise Pro Enterprise PHONE NUMBER AND 
Quickbooks enterprise 

[Sikuli-driver] [Question #322673]: SINKUU.COM 1 855 833 9561 QUICKBOOK pos PHONE NUMBER QUICKBOOKS pos SUPPORT PHONE NUMBER

2016-08-04 Thread brusal
New question #322673 on Sikuli:
https://answers.launchpad.net/sikuli/+question/322673

SINKUU.COM 1 855 833 9561 QUICKBOOK pos PHONE NUMBER QUICKBOOKS pos SUPPORT 
PHONE NUMBER
QUICKBOOKS pos SUPPORT PHONE NUMBER 1 855 833 9561 QUICKBOOKS pos PHONE NUMBER 
1 855 833 9561 QUICKBOOKS pos SUPPORT PHONE NUMBER 1 855 833 9561 QUICKBOOKS 
pos SUPPORT PHONE NUMBER 1 855 833 9561 QUICKBOOKS pos PHONE NUMBER 1 855 833 
9561 QUICKBOOKS pos PHONE NUMBER QUICKBOOKS pos SUPPORT PHONE NUMBER 1 855 833 
9561 QUICKBOOKS pos PHONE NUMBER 1 855 833 9561 QUICKBOOKS pos SUPPORT PHONE 
NUMBER 1 855 833 9561 QUICKBOOKS pos SUPPORT PHONE NUMBER 1 855 833 9561 
QUICKBOOKS pos PHONE NUMBER 1 855 833 9561 QUICKBOOKS pos PHONE NUMBER 
QUICKBOOKS pos SUPPORT PHONE NUMBER 1 855 833 9561 QUICKBOOKS pos PHONE NUMBER 
1 855 833 9561 QUICKBOOKS pos SUPPORT PHONE NUMBER 1 855 833 9561 QUICKBOOKS 
pos SUPPORT PHONE NUMBER 1 855 833 9561 QUICKBOOKS pos PHONE NUMBER 1 855 833 
9561 QUICKBOOKS pos PHONE NUMBER QUICKBOOKS pos SUPPORT PHONE NUMBER 1 855 833 
9561 QUICKBOOKS pos PHONE NUMBER 1 855 833 9561 QUICKBOOKS pos SUPPORT PHONE 
NUMBER 1 855 833 9561 QUICKBOOKS pos SUPPORT PHONE NUMBER 1 855 833 9561 Q
 UICKBOOKS pos PHONE NUMBER 1 855 833 9561 QUICKBOOKS pos PHONE NUMBER 
QUICKBOOKS pos SUPPORT PHONE NUMBER 1 855 833 9561 QUICKBOOKS pos PHONE NUMBER 
1 855 833 9561 QUICKBOOKS pos SUPPORT PHONE NUMBER 1 855 833 9561 QUICKBOOKS 
pos SUPPORT PHONE NUMBER 1 855 833 9561 QUICKBOOKS pos PHONE NUMBER 1 855 833 
9561 QUICKBOOKS pos PHONE NUMBER QUICKBOOKS pos SUPPORT PHONE NUMBER 1 855 833 
9561 QUICKBOOKS pos PHONE NUMBER 1 855 833 9561 QUICKBOOKS pos SUPPORT PHONE 
NUMBER 1 855 833 9561 QUICKBOOKS pos SUPPORT PHONE NUMBER 1 855 833 9561 
QUICKBOOKS pos PHONE NUMBER 1 855 833 9561 QUICKBOOKS pos PHONE NUMBER 
QUICKBOOKS pos SUPPORT PHONE NUMBER 1 855 833 9561 QUICKBOOKS pos PHONE NUMBER 
1 855 833 9561 QUICKBOOKS pos SUPPORT PHONE NUMBER 1 855 833 9561 QUICKBOOKS 
pos SUPPORT PHONE NUMBER 1 855 833 9561 QUICKBOOKS pos PHONE NUMBER 1 855 833 
9561 QUICKBOOKS pos PHONE NUMBER QUICKBOOKS pos SUPPORT PHONE NUMBER 1 855 833 
9561 QUICKBOOKS pos PHONE NUMBER 1 855 833 9561 QUICKBOOKS pos SUPPORT PHONE NUM
 BER 1 855 833 9561 QUICKBOOKS pos SUPPORT PHONE NUMBER 1 855 833 9561 
QUICKBOOKS pos PHONE NUMBER 1 855 833 9561 QUICKBOOKS pos PHONE NUMBER 
QUICKBOOKS pos SUPPORT PHONE NUMBER 1 855 833 9561 QUICKBOOKS pos PHONE NUMBER 
1 855 833 9561 QUICKBOOKS pos SUPPORT PHONE NUMBER 1 855 833 9561 QUICKBOOKS 
pos SUPPORT PHONE NUMBER 1 855 833 9561 QUICKBOOKS pos PHONE NUMBER 1 855 833 
9561 QUICKBOOKS pos PHONE NUMBER QUICKBOOKS pos SUPPORT PHONE NUMBER 1 855 833 
9561 QUICKBOOKS pos PHONE NUMBER 1 855 833 9561 QUICKBOOKS pos SUPPORT PHONE 
NUMBER 1 855 833 9561 QUICKBOOKS pos SUPPORT PHONE NUMBER 1 855 833 9561 
QUICKBOOKS pos PHONE NUMBER 1 855 833 9561 QUICKBOOKS pos PHONE NUMBER 
QUICKBOOKS pos SUPPORT PHONE NUMBER 1 855 833 9561 QUICKBOOKS pos PHONE NUMBER 
1 855 833 9561 QUICKBOOKS pos SUPPORT PHONE NUMBER 1 855 833 9561 QUICKBOOKS 
pos SUPPORT PHONE NUMBER 1 855 833 9561 QUICKBOOKS pos PHONE NUMBER 1 855 833 
9561 QUICKBOOKS pos PHONE NUMBER QUICKBOOKS pos SUPPORT PHONE NUMBER 1 855 833 
9561 QUIC
 KBOOKS pos PHONE NUMBER 1 855 833 9561 QUICKBOOKS pos SUPPORT PHONE NUMBER 1 
855 833 9561 QUICKBOOKS pos SUPPORT PHONE NUMBER 1 855 833 9561 QUICKBOOKS pos 
PHONE NUMBER 1 855 833 9561 QUICKBOOKS pos PHONE NUMBER QUICKBOOKS pos SUPPORT 
PHONE NUMBER 1 855 833 9561 QUICKBOOKS pos PHONE NUMBER 1 855 833 9561 
QUICKBOOKS pos SUPPORT PHONE NUMBER 1 855 833 9561 QUICKBOOKS pos SUPPORT PHONE 
NUMBER 1 855 833 9561 QUICKBOOKS pos PHONE NUMBER 1 855 833 9561 QUICKBOOKS pos 
PHONE NUMBER QUICKBOOKS pos SUPPORT PHONE NUMBER 1 855 833 9561 QUICKBOOKS pos 
PHONE NUMBER 1 855 833 9561 QUICKBOOKS pos SUPPORT PHONE NUMBER 1 855 833 9561 
QUICKBOOKS pos SUPPORT PHONE NUMBER 1 855 833 9561 QUICKBOOKS pos PHONE NUMBER 
1 855 833 9561 QUICKBOOKS pos PHONE NUMBER QUICKBOOKS pos SUPPORT PHONE NUMBER 
1 855 833 9561 QUICKBOOKS pos PHONE NUMBER 1 855 833 9561 QUICKBOOKS pos 
SUPPORT PHONE NUMBER 1 855 833 9561 QUICKBOOKS pos SUPPORT PHONE NUMBER 1 855 
833 9561 QUICKBOOKS pos PHONE NUMBER 1 855 833 9561 QUICKBOOKS p
 os PHONE NUMBER QUICKBOOKS pos SUPPORT PHONE NUMBER 1 855 833 9561 QUICKBOOKS 
pos PHONE NUMBER 1 855 833 9561 QUICKBOOKS pos SUPPORT PHONE NUMBER 1 855 833 
9561 QUICKBOOKS pos SUPPORT PHONE NUMBER 1 855 833 9561 QUICKBOOKS pos PHONE 
NUMBER 1 855 833 9561 QUICKBOOKS pos PHONE NUMBER QUICKBOOKS pos SUPPORT PHONE 
NUMBER 1 855 833 9561 QUICKBOOKS pos PHONE NUMBER 1 855 833 9561 QUICKBOOKS pos 
SUPPORT PHONE NUMBER 1 855 833 9561 QUICKBOOKS pos SUPPORT PHONE NUMBER 1 855 
833 9561 QUICKBOOKS pos PHONE NUMBER 1 855 833 9561 QUICKBOOKS pos PHONE NUMBER 
QUICKBOOKS pos SUPPORT PHONE NUMBER 1 855 833 9561 QUICKBOOKS pos PHONE NUMBER 
1 855 833 9561 QUICKBOOKS pos SUPPORT PHONE NUMBER 1 855 833 9561 QUICKBOOKS 
pos SUPPORT PHONE NUMBER 1 855 833 9561 QUICKBOOKS pos PHONE 

[Sikuli-driver] [Bug 1609749] Re: [1.1.1] Python scripting: input() does not work anymore (since mid July) --- fixed 1.1.1 2016-08-04

2016-08-04 Thread RaiMan
see related question

-- 
You received this bug notification because you are a member of Sikuli
Drivers, which is subscribed to Sikuli.
https://bugs.launchpad.net/bugs/1609749

Title:
  [1.1.1] Python scripting: input() does not work anymore (since mid
  July) --- fixed 1.1.1 2016-08-04

Status in Sikuli:
  New

Bug description:
  I'm encountering a strange behaviour, using the input method under the
  IDE.

  It always returns a "None" output, without showing any popup windows. 
  If I try to use the various parameters (like default, title, hidden) i will 
get an [error] TypeError ( input(): takes no keyword arguments ) or [error] 
TypeError ( input(): expected 1 args; got 2 ) depending if i type 'title="..." 
' or not. 

  I'm under window 7, java 1.8.0_45 and IDE 1.1.1
  So for now, i'm using the selfmade input() workaround I found in the #236481 
. 
  I looked around and cannot really see what I'm doing wrong, but it looks like 
the input() method used in the IDE doesnt correspond to the ones described in 
the documentation... 

  Thanks for the work done, because appart from that, i really enjoy the 
experience I have with Sikulix. 
  Regards,

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/1609749/+subscriptions

___
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] [Bug 1609749] [NEW] [1.1.1] Python scripting: input() does not work anymore (since mid July) --- fixed 1.1.1 2016-08-04

2016-08-04 Thread RaiMan
Public bug reported:

I'm encountering a strange behaviour, using the input method under the
IDE.

It always returns a "None" output, without showing any popup windows. 
If I try to use the various parameters (like default, title, hidden) i will get 
an [error] TypeError ( input(): takes no keyword arguments ) or [error] 
TypeError ( input(): expected 1 args; got 2 ) depending if i type 'title="..." 
' or not. 

I'm under window 7, java 1.8.0_45 and IDE 1.1.1
So for now, i'm using the selfmade input() workaround I found in the #236481 . 
I looked around and cannot really see what I'm doing wrong, but it looks like 
the input() method used in the IDE doesnt correspond to the ones described in 
the documentation... 

Thanks for the work done, because appart from that, i really enjoy the 
experience I have with Sikulix. 
Regards,

** Affects: sikuli
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Sikuli
Drivers, which is subscribed to Sikuli.
https://bugs.launchpad.net/bugs/1609749

Title:
  [1.1.1] Python scripting: input() does not work anymore (since mid
  July) --- fixed 1.1.1 2016-08-04

Status in Sikuli:
  New

Bug description:
  I'm encountering a strange behaviour, using the input method under the
  IDE.

  It always returns a "None" output, without showing any popup windows. 
  If I try to use the various parameters (like default, title, hidden) i will 
get an [error] TypeError ( input(): takes no keyword arguments ) or [error] 
TypeError ( input(): expected 1 args; got 2 ) depending if i type 'title="..." 
' or not. 

  I'm under window 7, java 1.8.0_45 and IDE 1.1.1
  So for now, i'm using the selfmade input() workaround I found in the #236481 
. 
  I looked around and cannot really see what I'm doing wrong, but it looks like 
the input() method used in the IDE doesnt correspond to the ones described in 
the documentation... 

  Thanks for the work done, because appart from that, i really enjoy the 
experience I have with Sikulix. 
  Regards,

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/1609749/+subscriptions

___
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 #321954]: problems with input() function in IDE

2016-08-04 Thread RaiMan
Question #321954 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/321954

Linked to bug: #1609749
https://bugs.launchpad.net/bugs/1609749
"[1.1.1] Python scripting: input() does not work anymore (since mid July) 
--- fixed 1.1.1 2016-08-04"

-- 
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 #321954]: problems with input() function in IDE

2016-08-04 Thread RaiMan
Question #321954 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/321954

Status: Open => Answered

RaiMan proposed the following answer:
great thanks for finding - completely my bad 
... and thanks for the kind feedback.

I added an input() method to Region for Android support, which now
blocks the standard scripting input() function.

I just fixed the problem and will schedule a new nightly, which should be 
available after max 1 hour.
... then the doc-ed input() is back again ;-)

-- 
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


[Sikuli-driver] [Question #321954]: problems with input() function in IDE

2016-08-04 Thread Jean-Michel
New question #321954 on Sikuli:
https://answers.launchpad.net/sikuli/+question/321954

I'm encountering a strange behaviour, using the input method under the IDE. 

It always returns a "None" output, without showing any popup windows. 
If I try to use the various parameters (like default, title, hidden) i will get 
an [error] TypeError ( input(): takes no keyword arguments ) or [error] 
TypeError ( input(): expected 1 args; got 2 ) depending if i type 'title="..." 
' or not. 

I'm under window 7, java 1.8.0_45 and IDE 1.1.1
So for now, i'm using the selfmade input() workaround I found in the #236481 . 
I looked around and cannot really see what I'm doing wrong, but it looks like 
the input() method used in the IDE doesnt correspond to the ones described in 
the documentation... 

Thanks for the work done, because appart from that, i really enjoy the 
experience I have with Sikulix. 
Regards, 

-- 
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 #321924]: selenium capture popup window

2016-08-04 Thread RaiMan
Question #321924 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/321924

Status: Open => Answered

RaiMan proposed the following answer:
surely not a SikuliX question.

Use a Selenium forum or stackoverflow.

-- 
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 #321926]: pywinauto in Sikuli(x) --- not useable since C-based Python module

2016-08-04 Thread RaiMan
Question #321926 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/321926

Status: Open => Answered

RaiMan proposed the following answer:
Generally all Python modules, that rely on C-based stuff (win32API in this 
case) are not useable in the Sikuli(X) context.
Only Python modules, that are written completely in Python (like xlrd) or 
Python modules, that are ported to the Java based Jython environment, which is 
used in Sikuli(X).

Some of the features of pywinauto seem to be available in SikuliX's class App 
(version 1.1.1 recommended).
Others might be easily scripted as private functions based on SikuliX features.

-- 
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 #321926]: pywinauto in Sikuli(x) --- not useable since C-based Python module

2016-08-04 Thread RaiMan
Question #321926 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/321926

Summary changed to:
pywinauto in Sikuli(x) --- not useable since C-based Python module

-- 
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


[Sikuli-driver] [Question #321926]: pywinauto in Sikuli(x)

2016-08-04 Thread Kamil
New question #321926 on Sikuli:
https://answers.launchpad.net/sikuli/+question/321926

How I can add pywinauto module and use it in Sikuli(X)?  Maybe is something  
similar to pywinauto to use in Sikuli(x)? 

-- 
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