blob: bcf035c0079801bfc4dbcac3b3ab55443ea190fd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
package vid.automation.test.sections;
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);
}
}
|