summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--uitest/src/com/vaadin/tests/components/slider/SliderDisableTest.java1
-rw-r--r--uitest/src/com/vaadin/tests/tb3/AbstractTB3Test.java17
2 files changed, 11 insertions, 7 deletions
diff --git a/uitest/src/com/vaadin/tests/components/slider/SliderDisableTest.java b/uitest/src/com/vaadin/tests/components/slider/SliderDisableTest.java
index f6ec3dac3b..53521ee483 100644
--- a/uitest/src/com/vaadin/tests/components/slider/SliderDisableTest.java
+++ b/uitest/src/com/vaadin/tests/components/slider/SliderDisableTest.java
@@ -29,6 +29,7 @@ public class SliderDisableTest extends MultiBrowserTest {
openTestURL();
WebElement element = vaadinElement("/VVerticalLayout[0]/Slot[0]/VSlider[0]/domChild[2]/domChild[0]");
new Actions(driver).dragAndDropBy(element, 112, 0).perform();
+ testBench().waitForVaadin();
compareScreen("enabled");
vaadinElementById("disableButton").click();
compareScreen("disabled");
diff --git a/uitest/src/com/vaadin/tests/tb3/AbstractTB3Test.java b/uitest/src/com/vaadin/tests/tb3/AbstractTB3Test.java
index f6e58a51b2..d7b7cd050f 100644
--- a/uitest/src/com/vaadin/tests/tb3/AbstractTB3Test.java
+++ b/uitest/src/com/vaadin/tests/tb3/AbstractTB3Test.java
@@ -107,16 +107,19 @@ public abstract class AbstractTB3Test extends TestBenchTestCase {
* If something goes wrong
*/
protected void setupDriver() throws Exception {
+ DesiredCapabilities capabilities;
+
RunLocally runLocally = getClass().getAnnotation(RunLocally.class);
if (runLocally != null) {
- setupLocalDriver(runLocally.value().getDesiredCapabilities());
- return;
- }
- DesiredCapabilities capabilities = getDesiredCapabilities();
+ capabilities = runLocally.value().getDesiredCapabilities();
+ setupLocalDriver(capabilities);
+ } else {
+ capabilities = getDesiredCapabilities();
- WebDriver dr = TestBench.createDriver(new RemoteWebDriver(new URL(
- getHubURL()), capabilities));
- setDriver(dr);
+ WebDriver dr = TestBench.createDriver(new RemoteWebDriver(new URL(
+ getHubURL()), capabilities));
+ setDriver(dr);
+ }
int w = SCREENSHOT_WIDTH;
int h = SCREENSHOT_HEIGHT;