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.

GenericWidgetHandlingTest.java 478B

1234567891011121314151617181920
  1. package com.vaadin.tests.serialization;
  2. import static org.junit.Assert.assertEquals;
  3. import org.junit.Test;
  4. import org.openqa.selenium.WebElement;
  5. import com.vaadin.tests.tb3.MultiBrowserTest;
  6. public class GenericWidgetHandlingTest extends MultiBrowserTest {
  7. @Test
  8. public void testWidgetInit() {
  9. openTestURL();
  10. WebElement label = vaadinElementById("label");
  11. assertEquals("The generic text is strong in this one", label.getText());
  12. }
  13. }