From a1978dfa16dbb35ee7ac7ab9026af27624158be7 Mon Sep 17 00:00:00 2001 From: Teemu Suo-Anttila Date: Tue, 14 Jul 2015 15:31:17 +0300 Subject: [PATCH] Convert EmbeddedWithNullSource test to TB4 Change-Id: I495e3b25282aaf7a3122b8503f08bb339a772560 --- .../EmbeddedWithNullSourceTest.java | 46 +++++++++++++++++++ .../EmbeddedWithNullSource.html | 27 ----------- 2 files changed, 46 insertions(+), 27 deletions(-) create mode 100644 uitest/src/com/vaadin/tests/components/abstractembedded/EmbeddedWithNullSourceTest.java delete mode 100644 uitest/tb2/com/vaadin/tests/components/abstractembedded/EmbeddedWithNullSource.html diff --git a/uitest/src/com/vaadin/tests/components/abstractembedded/EmbeddedWithNullSourceTest.java b/uitest/src/com/vaadin/tests/components/abstractembedded/EmbeddedWithNullSourceTest.java new file mode 100644 index 0000000000..649ee42986 --- /dev/null +++ b/uitest/src/com/vaadin/tests/components/abstractembedded/EmbeddedWithNullSourceTest.java @@ -0,0 +1,46 @@ +/* + * Copyright 2000-2014 Vaadin Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); you may not + * use this file except in compliance with the License. You may obtain a copy of + * the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations under + * the License. + */ +package com.vaadin.tests.components.abstractembedded; + +import java.io.IOException; +import java.util.List; + +import org.junit.Test; +import org.openqa.selenium.By; +import org.openqa.selenium.remote.DesiredCapabilities; + +import com.vaadin.testbench.parallel.Browser; +import com.vaadin.tests.tb3.MultiBrowserTest; + +public class EmbeddedWithNullSourceTest extends MultiBrowserTest { + + @Override + public List getBrowsersToTest() { + // No Flash on PhantomJS, IE 11 has a timeout issue, looks like a + // IEDriver problem, not reproduced running locally. + return getBrowserCapabilities(Browser.IE8, Browser.IE9, Browser.IE10, + Browser.CHROME, Browser.FIREFOX); + } + + @Test + public void testEmbeddedWithNullSource() throws IOException { + openTestURL(); + + waitForElementPresent(By.className("v-image")); + + compareScreen("nullSources"); + } +} diff --git a/uitest/tb2/com/vaadin/tests/components/abstractembedded/EmbeddedWithNullSource.html b/uitest/tb2/com/vaadin/tests/components/abstractembedded/EmbeddedWithNullSource.html deleted file mode 100644 index 37186bd901..0000000000 --- a/uitest/tb2/com/vaadin/tests/components/abstractembedded/EmbeddedWithNullSource.html +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - -EmbeddedWithNullSource - - - - - - - - - - - - - - - - - -
EmbeddedWithNullSource
open/run/EmbeddedWithNullSource?restartApplication
screenCapture
- - -- 2.39.5