aboutsummaryrefslogtreecommitdiffstats
path: root/vid-automation/src/main/java/vid/automation/test/sections/ChangeManagementPage.java
blob: 9532195474eafe811a3434b64cdd18b639074118 (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.onap.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();
    }
}