Package org.xwiki.test.ui.framework.elements.editor

Examples of org.xwiki.test.ui.framework.elements.editor.ChangeAvatarPage


    public ChangeAvatarPage changeAvatarImage()
    {
        this.changeAvatar.click();
        waitUntilElementIsVisible(By.id("uploadAttachment"));
        return new ChangeAvatarPage();
    }
View Full Code Here


    /** Functionality check: changing the profile picture. */
    @Test
    public void testChangeAvatarImage()
    {
        ChangeAvatarPage changeAvatarImage = this.customProfilePage.changeAvatarImage();
        changeAvatarImage.setAvatarImage(IMAGE_LOCATION);
        changeAvatarImage.submit();
        Assert.assertEquals(IMAGE_NAME, this.customProfilePage.getAvatarImageName());
    }
View Full Code Here

TOP

Related Classes of org.xwiki.test.ui.framework.elements.editor.ChangeAvatarPage

Copyright © 2018 www.massapicom. 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.