CTRL + TAB, Tab navigation

Asked by Pablo Frank

type(KEY_CTRL + Key.TAB) for navigating among tabs of IE Options (for example) does not work.

The message received is:
[error] An error occurs at line 6
[error] Error message: Traceback (most recent call last):
File "C:\Users\Pablo1\AppData\Local\Temp\sikuli-tmp815225433459835094.py", line 6, in type(KEY_CTRL + Key.TAB)
TypeError: unsupported operand type(s) for +: 'int' and 'str'

what's the needed command?

Question information

Language:
English Edit question
Status:
Solved
For:
SikuliX Edit question
Assignee:
No assignee Edit question
Solved by:
RaiMan
Solved:
Last query:
Last reply:
Revision history for this message
Best RaiMan (raimund-hocke) said :
#1

already had a look at: http://sikuli.org/docx/keys.html#key-constants

you will find as correct:
type(Key.TAB, KEY_CTRL)

Revision history for this message
Pablo Frank (frank-pablo) said :
#2

Thanks RaiMan, that solved my question.