Fix for Penetration test _ Session and cookie management
[vid.git] / vid-automation / src / main / java / vid / automation / test / sections / ChangeManagementPage.java
1 package vid.automation.test.sections;
2
3 import org.onap.sdc.ci.tests.utilities.GeneralUIUtils;
4 import vid.automation.test.Constants;
5 import vid.automation.test.infra.Click;
6
7 public class ChangeManagementPage extends VidBasePage {
8     public static void openChangeManagementPage() {
9         Click.byText(Constants.SideMenu.VNF_CHANGES);
10     }
11
12     public static void openNewChangeManagementModal() {
13         ChangeManagementPage.openChangeManagementPage();
14         Click.byId(Constants.ChangeManagement.headlineNewButtonId);
15     }
16     public static void clickOnRefreshButton(){
17         Click.byTestId("refresh-cm");
18         GeneralUIUtils.ultimateWait();
19     }
20 }