Meta+Alt+Alt Graph+Button1+CLICK from nowhere

Asked by Ray Bobak

the code ....
            for cord in attackPoints:
                target = Region(cord[0],cord[1],cord[2],cord[3])
                print 'attacking ',target
                click(target)
                wait("1393912142679.png",60)
                print 'click on second attack button'
                click("1393912142679.png",60)

from the message log
attacking R[5236,589 85x108]@S(0)[0,0 5760x1080] E:Y, T:3.0
[log] CLICK on L(5278,643)@S(0)[0,0 5760x1080]

click on second attack button

[log] Meta+Alt+Alt Graph+Button1+CLICK on L(5449,957)@S(0)[0,0 5760x1080]

where is the Meta+Alt+AltGraph coming from?

Question information

Language:
English Edit question
Status:
Solved
For:
SikuliX Edit question
Assignee:
No assignee Edit question
Solved by:
obiwan-92
Solved:
Last query:
Last reply:
Revision history for this message
Best obiwan-92 (obiwan-92) said :
#1

Hello,

It's coming from the '60' in your following line:
click("1393912142679.png",60)
This parameter is to allowed a click with some key pushed.

You have probably make a copy/paste from the wait and forgot to delete the duration.

Regards.

Revision history for this message
Ray Bobak (ray-bobak) said :
#2

thank you, you are correct, it was a copy of a wait()

Revision history for this message
Ray Bobak (ray-bobak) said :
#3

Thanks obiwan-92, that solved my question.