-
Notifications
You must be signed in to change notification settings - Fork 47
/
DatePickersMonthPage.java
67 lines (51 loc) · 2.48 KB
/
DatePickersMonthPage.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
package io.github.com.pages;
import com.epam.jdi.light.elements.pageobjects.annotations.locators.UI;
import com.epam.jdi.light.ui.html.elements.common.Button;
import com.epam.jdi.light.vuetify.annotations.JDatePickerMonth;
import com.epam.jdi.light.vuetify.elements.common.VueCheckbox;
import com.epam.jdi.light.vuetify.elements.complex.DatePickerMonth;
public class DatePickersMonthPage extends VuetifyPage {
@JDatePickerMonth(
root = "#AllowedMonthPicker > div")
public static DatePickerMonth allowedMonthPicker;
@JDatePickerMonth(
root = "#ColorsMonthPicker > div:nth-child(1)")
public static DatePickerMonth firstColorMonthPicker;
@JDatePickerMonth(
root = "#IconsMonthPicker > div")
public static DatePickerMonth iconsMonthPicker;
@JDatePickerMonth(
root = "#MultipleMonthPicker > div")
public static DatePickerMonth multipleMonthPicker;
@JDatePickerMonth(
root = "#ReadonlyMonthPicker > div")
public static DatePickerMonth readonlyMonthPicker;
@JDatePickerMonth(
root = "#WidthMonthPicker > div:nth-child(1)")
public static DatePickerMonth firstWidthMonthPicker;
@JDatePickerMonth(
root = "#DialogMenuMonthPicker > div:nth-child(1)",
expandedRoot = "#app > div.v-menu__content.theme--light.menuable__content__active")
public static DatePickerMonth pickerInMenuMonthPicker;
@JDatePickerMonth(
root = "#DialogMenuMonthPicker > div:nth-child(3)",
expandedRoot = "#app > div.v-dialog__content.v-dialog__content--active")
public static DatePickerMonth pickerInDialogMonthPicker;
@JDatePickerMonth(
root = "#InternationalizationMonthPicker > div:nth-child(1)")
public static DatePickerMonth thaiMonthPicker;
@JDatePickerMonth(
root = "#InternationalizationMonthPicker > div:nth-child(2)")
public static DatePickerMonth swedishMonthPicker;
@JDatePickerMonth(
root = "#OrientationMonthPicker > .v-picker")
public static DatePickerMonth orientationMonthPicker;
@UI("#OrientationMonthPicker > .v-input")
public static VueCheckbox orientationSwitcher;
@UI(".v-menu__content .v-picker__actions .v-btn:last-child")
public static Button buttonOkMenu;
@UI(".v-menu__content .v-picker__actions .v-btn:nth-child(2)")
public static Button buttonCancelMenu;
@UI(".v-dialog__content .v-picker__actions .v-btn:last-child")
public static Button buttonOkDialog;
}