aboutsummaryrefslogtreecommitdiffstats
path: root/uitest/src/test/java/com/vaadin/tests/components/ui/UIInitExceptionTest.java
blob: dea9a22d7fdd7407adb78a644d618494a6df0ada (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.vaadin.tests.components.ui;

import static org.junit.Assert.assertTrue;

import org.junit.Test;

import com.vaadin.tests.tb3.SingleBrowserTest;

public class UIInitExceptionTest extends SingleBrowserTest {
    @Test
    public void testExceptionOnUIInit() throws Exception {
        openTestURL();
        assertTrue("Page does not contain the given text",
                driver.getPageSource().contains("Catch me if you can"));
    }
}