diff options
author | Artur Signell <artur@vaadin.com> | 2015-01-29 18:54:35 +0200 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2015-03-06 11:32:22 +0000 |
commit | bb73827b48e54086e24415df0ae19e44a098ac87 (patch) | |
tree | b1587b6567fd47c0fabd42d0ba2e6b1aa7d9949b /uitest/src/com/vaadin/tests/tb3 | |
parent | 8cc721393c4b6599eccb2e519f56d85dc5285adc (diff) | |
download | vaadin-framework-bb73827b48e54086e24415df0ae19e44a098ac87.tar.gz vaadin-framework-bb73827b48e54086e24415df0ae19e44a098ac87.zip |
Converted ValidationOfRequiredEmptyFields to TB4
Change-Id: Ifab3d891115b30ef2d3f7542cd57ac7215653fe5
Diffstat (limited to 'uitest/src/com/vaadin/tests/tb3')
-rw-r--r-- | uitest/src/com/vaadin/tests/tb3/AbstractTB3Test.java | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/uitest/src/com/vaadin/tests/tb3/AbstractTB3Test.java b/uitest/src/com/vaadin/tests/tb3/AbstractTB3Test.java index ef32d9a067..a95def5983 100644 --- a/uitest/src/com/vaadin/tests/tb3/AbstractTB3Test.java +++ b/uitest/src/com/vaadin/tests/tb3/AbstractTB3Test.java @@ -158,6 +158,12 @@ public abstract class AbstractTB3Test extends ParallelTest { } } + protected WebElement getTooltipErrorElement() { + WebElement tooltip = getDriver().findElement( + com.vaadin.testbench.By.className("v-tooltip")); + return tooltip.findElement(By.className("v-errormessage")); + } + protected WebElement getTooltipElement() { return getDriver().findElement( com.vaadin.testbench.By.className("v-tooltip-text")); |