This is an automated email from the ASF dual-hosted git repository. seelmann pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/directory-studio.git The following commit(s) were added to refs/heads/master by this push: new 7496468 Attempt to fix test failures, activate dialog. 7496468 is described below commit 74964686f5947108350578deebab4a319a446545 Author: Stefan Seelmann AuthorDate: Thu Oct 11 22:29:34 2018 +0200 Attempt to fix test failures, activate dialog. --- .../studio/test/integration/ui/bots/NewSchemaProjectWizardBot.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/test.integration.ui/src/main/java/org/apache/directory/studio/test/integration/ui/bots/NewSchemaProjectWizardBot.java b/tests/test.integration.ui/src/main/java/org/apache/directory/studio/test/integration/ui/bots/NewSchemaProjectWizardBot.java index 5bceb41..eeea378 100644 --- a/tests/test.integration.ui/src/main/java/org/apache/directory/studio/test/integration/ui/bots/NewSchemaProjectWizardBot.java +++ b/tests/test.integration.ui/src/main/java/org/apache/directory/studio/test/integration/ui/bots/NewSchemaProjectWizardBot.java @@ -34,6 +34,7 @@ public class NewSchemaProjectWizardBot extends WizardBot public void typeProjectName( String projectName ) { + activate(); SWTBotText text = bot.textWithLabel( "Project name:" ); text.setText( projectName ); } @@ -41,6 +42,7 @@ public class NewSchemaProjectWizardBot extends WizardBot public void selectAllSchemas() { + activate(); clickButton( "Select All" ); }