Examples of WatchlistPreferencesEditPage


Examples of org.xwiki.test.ui.watchlist.elements.editor.WatchlistPreferencesEditPage

            "admin@localhost");

        this.watchlistPage = profilePage.switchToWatchlist();

        // Disable auto watch
        WatchlistPreferencesEditPage watchlistPreferences = this.watchlistPage.editPreferences();
        watchlistPreferences.setAutomaticWatchNone();
        watchlistPreferences.clickSaveAndContinue();
    }
View Full Code Here

Examples of org.xwiki.test.ui.watchlist.elements.editor.WatchlistPreferencesEditPage

    }

    public WatchlistPreferencesEditPage editPreferences()
    {
        this.editPreferences.click();
        return new WatchlistPreferencesEditPage();
    }
View Full Code Here

Examples of org.xwiki.test.ui.watchlist.elements.editor.WatchlistPreferencesEditPage

            .xpath("//tbody[@id='mywatchlist-display']/tr/td/a[@href='/xwiki/bin/view/Test/TestWatchThisPage']"));
        Assert.assertTrue(this.watchlistPage.isWatched("Test", "TestWatchThisPage"));
        Assert.assertTrue(this.watchlistPage.isWatched("TestWatchWholeSpace"));

        // Edit preferences
        WatchlistPreferencesEditPage watchlistPreferences = this.watchlistPage.editPreferences();

        // Ensure the frequency set is every hour so that Hourly job we've modified is used
        watchlistPreferences.setNotifierDaily();
        watchlistPreferences.clickSaveAndContinue();

        // Switch to Admin user and go to the scheduler home page
        SchedulerHomePage schedulerHomePage = new SchedulerHomePage();
        getDriver().get(getUtil().getURLToLoginAsAdminAndGotoPage(schedulerHomePage.getURL()));
        getUtil().recacheSecretToken();
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.