Search code examples
pythonsikuli

How to send “Ctrl + Shift + t” in Sikuli?


I'm having trouble to send the shortcut CTRL + SHIFT + T in Sikuli. This is what I typed:

type(Key.CTRL, Key.SHIFT, "t");

I want to do this shortcut to open a new tab on Chrome.


Solution

  • type("t", Key.CTRL+Key.SHIFT)
    

    as shown in the docs