Examples of waitForNotificationErrorMessage()


Examples of org.xwiki.test.ui.framework.elements.editor.ClassEditPage.waitForNotificationErrorMessage()

    @Test
    public void addInvalidProperty()
    {
        ClassEditPage cep = getUtil().editClass("Test", "EditObjectsTestClass");
        cep.addPropertyWithoutWaiting("a<b c", "com.xpn.xwiki.objects.classes.StringClass");
        cep.waitForNotificationErrorMessage("Failed: Property names must follow these naming rules:");
    }
}
View Full Code Here

Examples of org.xwiki.test.ui.po.editor.ClassEditPage.waitForNotificationErrorMessage()

    @Test
    public void addInvalidProperty()
    {
        ClassEditPage cep = getUtil().editClass("Test", "EditObjectsTestClass");
        cep.addPropertyWithoutWaiting("a<b c", "String");
        cep.waitForNotificationErrorMessage("Failed: Property names must follow these naming rules:");
    }
}
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.