diff options
author | Teemu Suo-Anttila <teemusa@vaadin.com> | 2015-07-15 09:57:41 +0300 |
---|---|---|
committer | Teemu Suo-Anttila <teemusa@vaadin.com> | 2015-07-21 14:41:19 +0300 |
commit | 928d81a6c44363fd85b3bbf2bf32b0e4dc5d0efc (patch) | |
tree | 1c22e514daf7d1e2d9109728815b84b1f5617fda | |
parent | da92a224f59b4faf65676b603e748391fdf51baa (diff) | |
download | vaadin-framework-928d81a6c44363fd85b3bbf2bf32b0e4dc5d0efc.tar.gz vaadin-framework-928d81a6c44363fd85b3bbf2bf32b0e4dc5d0efc.zip |
Use FixedNotificationElement in BasicPersonFormTest
This makes tests more stable with IE browsers
Change-Id: If907dbd0406509b6ece2ad119a2b7b16ccf79f38
-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() { |