aboutsummaryrefslogtreecommitdiffstats
path: root/uitest/src/test/java/com/vaadin/tests/accessibility/WindowWaiAriaRolesTest.java
blob: 089f5bfb03661edba4ada0a81396178a0b2ad3f8 (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
package com.vaadin.tests.accessibility;

import static org.junit.Assert.assertTrue;

import org.junit.Test;

import com.vaadin.testbench.elements.ButtonElement;
import com.vaadin.testbench.elements.WindowElement;
import com.vaadin.tests.tb3.MultiBrowserTest;

/**
 * Test to see if regular and alert windows get the correct wai-aria roles
 *
 * @author Vaadin Ltd
 */
public class WindowWaiAriaRolesTest extends MultiBrowserTest {

    @Test
    public void testRegularWindowRole() {
        openTestURL();

        $(ButtonElement.class).caption("Regular").first().click();
        String role = getWindowRole();
        assertTrue(
                "Dialog has incorrect role '" + role + "', expected 'dialog'",
                "dialog".equals(role));
    }

    @Test
    public void testAlertWindowRole() {
        openTestURL();
        $(ButtonElement.class).caption("Alert").first().click();
        String role = getWindowRole();
        assertTrue(
                "Dialog has incorrect role '" + role
                        + "', expected 'alertdialog'",
                "alertdialog".equals(role));
    }

    public String getWindowRole() {
        return $(WindowElement.class).first().getAttribute("role");
    }
}