7fc285c0911f391f1cba2995ffc06a1d2541fb4f
[taxeditor.git] / eu.etaxonomy.taxeditor.test / src / test / java / eu / etaxonomy / taxeditor / test / NewTaxonWizardTest.java
1 /**
2 *
3 */
4 package eu.etaxonomy.taxeditor.test;
5
6 import org.eclipse.swtbot.eclipse.finder.waits.Conditions;
7 import org.junit.After;
8 import org.junit.Ignore;
9 import org.junit.Test;
10
11 /**
12 * @author n.hoffmann
13 *
14 */
15 public class NewTaxonWizardTest extends AbstractEditorTest {
16
17 @Override
18 public void setup() {
19 super.setup();
20 bot.menu("General").menu("New").menu("Taxon").click();
21 bot.waitUntil(Conditions.shellIsActive("New Entity"));
22 }
23
24 @Ignore
25 @Test
26 public void canSelectClassification() {
27 bot.button("Browse existing").click();
28 bot.waitUntil(Conditions.shellIsActive("Choose a Classification"));
29 }
30
31 @After
32 public void tearDown() {
33 clickButton("Finish");
34 }
35 }