How to get the description text of an eclipse wizard using SWTBot? The wizard.shell.gettext() method gives the title, but I could not find any method for getting the description.I need it to verify the description and the error messages displayed on the wizard page.
How to get the description text of an eclipse wizard using SWTBot? The wizard.shell.gettext()
Share
as a workaround , I used this code
here bot is a SWTBot instance available to method.The wizard messages automatically prepends a space to the description field,so I m using
" "+message. Hope it helps