diff options
author | Teemu Suo-Anttila <teemusa@vaadin.com> | 2015-07-15 09:57:41 +0300 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2015-07-15 07:28:56 +0000 |
commit | 3b05685493d17e89404025e3cdd81d47e511b0ce (patch) | |
tree | 0bb3adf2837b9fe1fdfb2c6825109959bb80c745 | |
parent | 0e085a9ddbf75b7052d521ade84cd08c986e3469 (diff) | |
download | vaadin-framework-3b05685493d17e89404025e3cdd81d47e511b0ce.tar.gz vaadin-framework-3b05685493d17e89404025e3cdd81d47e511b0ce.zip |
Use FixedNotificationElement in BasicPersonFormTest
This makes tests more stable with IE browsers
Change-Id: I9f02180614e860d41f1b9bc90ec4cc4a5d243f0e
-rw-r--r-- | uitest/src/com/vaadin/tests/fieldgroup/BasicPersonFormTest.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/uitest/src/com/vaadin/tests/fieldgroup/BasicPersonFormTest.java b/uitest/src/com/vaadin/tests/fieldgroup/BasicPersonFormTest.java index f5d78029c9..2562412480 100644 --- a/uitest/src/com/vaadin/tests/fieldgroup/BasicPersonFormTest.java +++ b/uitest/src/com/vaadin/tests/fieldgroup/BasicPersonFormTest.java @@ -20,13 +20,13 @@ import org.junit.Assert; import com.vaadin.testbench.TestBenchElement; import com.vaadin.testbench.elements.ButtonElement; import com.vaadin.testbench.elements.CheckBoxElement; -import com.vaadin.testbench.elements.NotificationElement; import com.vaadin.testbench.elements.TableElement; import com.vaadin.testbench.elements.TableRowElement; import com.vaadin.testbench.elements.TextAreaElement; import com.vaadin.testbench.elements.TextFieldElement; import com.vaadin.tests.data.bean.Sex; import com.vaadin.tests.tb3.MultiBrowserTest; +import com.vaadin.tests.tb3.newelements.FixedNotificationElement; public abstract class BasicPersonFormTest extends MultiBrowserTest { @@ -82,7 +82,7 @@ public abstract class BasicPersonFormTest extends MultiBrowserTest { } protected void closeNotification() { - $(NotificationElement.class).first().close(); + $(FixedNotificationElement.class).first().close(); } protected CheckBoxElement getPostCommitFailsCheckBox() { |