org.onap migration
[vid.git] / vid-automation / src / main / java / vid / automation / test / sections / ChangeManagementPage.java
1 package vid.automation.test.sections;
2
3 import vid.automation.test.Constants;
4 import vid.automation.test.infra.Click;
5
6 public class ChangeManagementPage extends VidBasePage {
7     public static void openChangeManagementPage() {
8         Click.byText(Constants.SideMenu.VNF_CHANGES);
9     }
10
11     public static void openNewChangeManagementModal() {
12         ChangeManagementPage.openChangeManagementPage();
13         Click.byId(Constants.ChangeManagement.headlineNewButtonId);
14     }
15 }