I am trying to select an entire line of text on a web page (in a table) using Sikuli. The easiest way to select the text is to "triple-click" on it. Is there a way to triple-click in Sikuli? Thanks!

link|improve this question

50% accept rate
feedback

4 Answers

Have you tried low level mouse functions? Something like this should work:

for x in xrange(3):
  region.mouseDown()
  region.mouseUp()
link|improve this answer
feedback

Depending on what is being clicked, sometimes, the click type is the same as multiple clicks in succession. Meaning, if what needs to be clicked doesn't have to be double/triple-clicked very fast, then you can just use a sequence of single clicks. 2 clicks = double-click, 3 clicks = triple click. I know that 2 clicks will simulate a double-click on Windows desktop (not sure about things like games, etc.)

I've seldom heard of a triple-click action though.

So, have you tried using 3 clicks to simulate triple-click to see if that works or not?

link|improve this answer
feedback

quick fix solution would be to check out the mouse settings in control panel and you can lower the time between clicks required to register successive clicks needed to perform the 'triple click' action

link|improve this answer
feedback

GregH,

I got the following to work for me:

click(img.png)
mouseDown(Button.LEFT)
mouseUp(Button.LEFT)
wait(0.01)
mouseDown(Button.LEFT)
mouseUp(Button.LEFT)

This allowed me triple click on a button, link, or whatever I needed to click on.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.