0

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.

Dorian Turba
  • 3,260
  • 3
  • 23
  • 67
  • Check this question, it's Selenium related but it might be helpful to your problem: https://stackoverflow.com/questions/21905946/python-selenium-how-to-use-browser-shortcuts – Marc Sances Feb 28 '20 at 13:33

1 Answers1

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

as shown in the docs

Eugene S
  • 6,709
  • 8
  • 57
  • 91
RaiMan
  • 1,088
  • 8
  • 13