← Back to team overview

sikuli-driver team mailing list archive

[Bug 786397] Re: Mouse down time on click is too quick

 

I had this problem too with flash apps or slow computers, you can use
mouseDown/Up like...

def mouseDown2(region):
  region.mouseDown(Button.LEFT)
  wait(0.3)
  region.mouseUp(Button.LEFT)

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

Title:
  Mouse down time on click is too quick

Status in Sikuli:
  New

Bug description:
  When i use the "click" function on a single click position, in some
  cases "click" happens too quickly for the application to recognize the
  click. The workaround i use is to use the dragdrop function and drag
  from one side of the clickable area to the other. I've even tried
  using the doubleclick function, but this doesn't work as consistently.
  Is there a setting where I can increase the mouse down time for the
  click function?

  Sikuli X-1.0rc2
  Windows 7 64-bit


References