aboutsummaryrefslogtreecommitdiffstats
path: root/vid-automation/src/main/java/vid/automation/test/sections/ChangeManagementPage.java
blob: ca0b55b36033e2ca82a971122d5a56787e86a64e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package vid.automation.test.sections;

import org.openecomp.sdc.ci.tests.utilities.GeneralUIUtils;
import vid.automation.test.Constants;
import vid.automation.test.infra.Click;

public class ChangeManagementPage extends VidBasePage {
    public static void openChangeManagementPage() {
        Click.byText(Constants.SideMenu.VNF_CHANGES);
    }

    public static void openNewChangeManagementModal() {
        ChangeManagementPage.openChangeManagementPage();
        Click.byId(Constants.ChangeManagement.headlineNewButtonId);
    }
    public static void clickOnRefreshButton(){
        Click.byTestId("refresh-cm");
        GeneralUIUtils.ultimateWait();
    }
}