}
@Override
protected void launch(String url) {
try {
AbbotHelper abbotHelper = EclipseSeleniumServer.INSTANCE.getAHelper();
Shell workbenchShell = EclipseSeleniumServer.INSTANCE.getShell();
abbotHelper.clickMenuItem (workbenchShell,
new String[] {"&Window", "Web Browser", "&0 Internal Web Browser"});
Shell openShell = abbotHelper.clickMenuItem (workbenchShell,
new String[] {"&Window", "Show &View", "&Other..."}, "Show View");
abbotHelper.clickTreeItem (openShell,
new String[] {"General", "Internal Web Browser"});
abbotHelper.clickButton (openShell, IDialogConstants.OK_LABEL);
abbotHelper.setCombo (workbenchShell, url);
abbotHelper.clickToolItem (workbenchShell, "Go to the selected URL");
abbotHelper.waitTime (AbbotHelper.WAIT_LONG);
} catch ( Exception e ) {
e.printStackTrace();
}
}