diff options
author | Guillermo Alvarez <guillermo@vaadin.com> | 2014-10-20 14:40:38 +0300 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2014-10-21 13:48:41 +0000 |
commit | f24fe92ed3fea53f8907924a92fc235f84cdec0e (patch) | |
tree | 1ca7474ace380bb13e01c3d7399eb0cb1692e529 /uitest | |
parent | ba4a5b3e300fe2995980943cb120e57bbd96d869 (diff) | |
download | vaadin-framework-f24fe92ed3fea53f8907924a92fc235f84cdec0e.tar.gz vaadin-framework-f24fe92ed3fea53f8907924a92fc235f84cdec0e.zip |
Added missing test when unframed (#14450)
Now we check closing element is present in unframed tabsheets
Change-Id: If29c1006db0f9267d213b5f063a1c478efe60ea9
Diffstat (limited to 'uitest')
-rw-r--r-- | uitest/src/com/vaadin/tests/themes/valo/ValoThemeUITest.java | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/uitest/src/com/vaadin/tests/themes/valo/ValoThemeUITest.java b/uitest/src/com/vaadin/tests/themes/valo/ValoThemeUITest.java index d4ddf2dcf9..b0af0db8c6 100644 --- a/uitest/src/com/vaadin/tests/themes/valo/ValoThemeUITest.java +++ b/uitest/src/com/vaadin/tests/themes/valo/ValoThemeUITest.java @@ -172,6 +172,17 @@ public class ValoThemeUITest extends MultiBrowserTest { } @Test + public void tabsClosableUnframed() throws Exception { + openTestURL("test"); + open("Tabs <span class=\"valo-menu-badge\">123</span>", "Tabs"); + check("Closable"); + // Framed option is checked by default so we are actually unchecking + check("Framed"); + check("Overflow"); + compareScreen("tabs-closable-unframed"); + } + + @Test public void tabsAlignRight() throws Exception { openTestURL("test"); open("Tabs <span class=\"valo-menu-badge\">123</span>", "Tabs"); |