I'm having trouble to send the shortcut CTRL + SHIFT + T in Sikuli. This is what I typed:
CTRL + SHIFT + T
type(Key.CTRL, Key.SHIFT, "t");
I want to do this shortcut to open a new tab on Chrome.
type("t", Key.CTRL+Key.SHIFT)
as shown in the docs