Package com.smartcodeltd.jenkinsci.plugins.buildmonitor_acceptance.pageobjects.jenkins

Examples of com.smartcodeltd.jenkinsci.plugins.buildmonitor_acceptance.pageobjects.jenkins.NewView


    private List<Action> configurationPlan;

    private CreateBuildMonitorView(final String name) {
        this.configurationPlan = new ArrayList<Action>() {{
            NewView newView = NewView.screen();

            add(navigateTo(newView));
            add(enter(name, newView.name()));
            add(click(newView.mode("Build Monitor View")));
            add(click(newView.OK()));
        }};
    }
View Full Code Here

TOP

Related Classes of com.smartcodeltd.jenkinsci.plugins.buildmonitor_acceptance.pageobjects.jenkins.NewView

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.