blob: fd325f8ad67a8d0eec0334596b8d6bdfd59b28db (
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
25
26
27
28
29
|
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 PopupDateFieldStatesTest extends MultiBrowserTest {
@Test
public void readOnlyDateFieldPopupShouldNotOpen()
throws IOException, InterruptedException {
openTestURL();
// wait until loading indicator becomes invisible
WebElement loadingIndicator = findElement(
By.className("v-loading-indicator"));
Pattern pattern = Pattern.compile("display: *none;");
waitUntil(driver -> pattern
.matcher(loadingIndicator.getAttribute("style")).find());
compareScreen("dateFieldStates");
}
}
|