SWTBot/Snippets

From Eclipsepedia

Jump to: navigation, search


SWTBot
Website
Download
Dev Builds
Update Site Ganymede e3.4 Galileo e3.5
Community
Mailing ListNewsgroupIRC
Bugzilla
Open
Help Wanted
Bug Day
Contributing
Contributing


Some snippets for working with SWTBot


Switch perspective

This allows you to switch perspectives in eclipse from within the Window>Open Perspective>Other... menu.

// Change the perspective via the Open Perspective dialog       
bot.menu("Window").menu("Open Perspective").menu("Other...").click();
SWTBotShell openPerspectiveShell = bot.shell("Open Perspective");
openPerspectiveShell.activate();
 
// select the dialog
bot.table().select("Debug");
bot.button("OK").click();