blob: 3f14123139bf7e842e1008c17d71e9a9bca4415c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
package com.vaadin.tests.components.datefield;
import java.io.IOException;
import java.util.regex.Pattern;
import org.junit.Test;
import org.openqa.selenium.By;
import org.openqa.selenium.WebElement;
import com.vaadin.tests.tb3.MultiBrowserTest;
public class PopupDateTimeFieldStatesTest extends MultiBrowserTest {
@Test
public void readOnlyDateFieldPopupShouldNotOpen()
throws IOException, InterruptedException {
openTestURL();
waitUntilLoadingIndicatorNotVisible();
compareScreen("dateFieldStates");
}
}
|