We're writing some tests using SWTBot, and we need to change some things in the common tab of the run configurations during the test. Any idea on how to navigate there?
Thanks, Oren
We're writing some tests using SWTBot, and we need to change some things in the common tab of the run configurations during the test. Any idea on how to navigate there?
Thanks, Oren
it works for me by using the Keyboard func (shortcut: ALT+C):
KeyboardFactory.getAWTKeyboard().pressShortcut(Keystrokes.ALT,KeyStroke.getInstance(0, 'C'));
bot.sleep(3000);