aboutsummaryrefslogtreecommitdiffstats
path: root/uitest/src/test/java/com/vaadin/tests/tb3/AbstractTB3Test.java
diff options
context:
space:
mode:
authorGuille <alvarezguille@users.noreply.github.com>2017-11-20 10:19:40 +0200
committerAleksi Hietanen <aleksi@vaadin.com>2017-11-20 10:19:40 +0200
commit927cb26c510dec1b7348760a65ca4e9522651960 (patch)
treefda94c201ebc4d472e93fd2316c86488422cf43a /uitest/src/test/java/com/vaadin/tests/tb3/AbstractTB3Test.java
parent81b4dfb6728d9455c1db055156c6555b8aa4906b (diff)
downloadvaadin-framework-927cb26c510dec1b7348760a65ca4e9522651960.tar.gz
vaadin-framework-927cb26c510dec1b7348760a65ca4e9522651960.zip
Update testbench version (#10336)
Diffstat (limited to 'uitest/src/test/java/com/vaadin/tests/tb3/AbstractTB3Test.java')
-rw-r--r--uitest/src/test/java/com/vaadin/tests/tb3/AbstractTB3Test.java24
1 files changed, 0 insertions, 24 deletions
diff --git a/uitest/src/test/java/com/vaadin/tests/tb3/AbstractTB3Test.java b/uitest/src/test/java/com/vaadin/tests/tb3/AbstractTB3Test.java
index 300eeb1ca6..c33043b443 100644
--- a/uitest/src/test/java/com/vaadin/tests/tb3/AbstractTB3Test.java
+++ b/uitest/src/test/java/com/vaadin/tests/tb3/AbstractTB3Test.java
@@ -407,30 +407,6 @@ public abstract class AbstractTB3Test extends ParallelTest {
}
/**
- * Waits up to 10s for the given condition to become true. Use e.g. as
- * {@link #waitUntil(ExpectedConditions.textToBePresentInElement(by, text))}
- *
- * @param condition
- * the condition to wait for to become true
- */
- protected <T> void waitUntil(ExpectedCondition<T> condition) {
- waitUntil(condition, 10);
- }
-
- /**
- * Waits the given number of seconds for the given condition to become true.
- * Use e.g. as
- * {@link #waitUntil(ExpectedConditions.textToBePresentInElement(by, text))}
- *
- * @param condition
- * the condition to wait for to become true
- */
- protected <T> void waitUntil(ExpectedCondition<T> condition,
- long timeoutInSeconds) {
- new WebDriverWait(driver, timeoutInSeconds).until(condition);
- }
-
- /**
* Waits up to 10s for the given condition to become false. Use e.g. as
* {@link #waitUntilNot(ExpectedConditions.textToBePresentInElement(by,
* text))}