Goto Next Tab

Asked by JC

Hi,

I've tried a couple of ways to got to the next tab (ctrl+tab & ctrl+pagedown),but none seems to work?

In Windows using Internet Explorer to go to the next tab? At the moment I found a way using the On-Screen Keyboard which seems to be working when Intenet Explorer & On-Screen Keyboard is both visible,but was wondering if there's another way?

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
RaiMan (raimund-hocke) said :
#1

What are you talking about?

Using type()?

What tabs in what application?

Guess it is Windows?

Revision history for this message
Best RaiMan (raimund-hocke) said :
#2

To switch tabs in IE one uses:
ctrl+tab and ctrl+shift+tab

In Sikuli using type():

type(Key.TAB, KeyModifier.CTRL)

and

type(Key.TAB, KeyModifier.CTRL+KeyModifier.SHIFT)

Revision history for this message
JC (kitching-jc) said :
#3

Thanks RaiMan, that solved my question.