-1

There are few tabs in my application (Desktop Application). Able to identify the tab and Select it successfully. Looking for optimal way to right click on tab, so that I can have access to context menu options.

NOTE: Shift+F10 is not working.

Krishna M.G.
  • 81
  • 1
  • 1
  • 7

1 Answers1

1

This was solved by using the Action class

Actions CtRightClick = new Actions(session);

CtRightClick.ContextClick().Perform();

Krishna M.G.
  • 81
  • 1
  • 1
  • 7