You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

PopupDateTimeFieldStatesTest.java 562B

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