-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathCardPage.java
More file actions
33 lines (23 loc) · 920 Bytes
/
CardPage.java
File metadata and controls
33 lines (23 loc) · 920 Bytes
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
package io.github.com.pages;
import com.epam.jdi.light.angular.elements.complex.Card;
import com.epam.jdi.light.elements.pageobjects.annotations.locators.UI;
public class CardPage extends NewAngularPage {
@UI("#simple-card")
public static Card simpleCard;
@UI("#example-card")
public static Card card;
@UI("#card-with-footer")
public static Card cardWithFooter;
@UI("#card-with-alignment-align-start")
public static Card cardAlignStartActions;
@UI("#card-with-alignment-align-end")
public static Card cardAlignEndActions;
@UI("#card-with-media-size-sm-image")
public static Card cardWithSmallImage;
@UI("#card-with-media-size-md-image")
public static Card cardWithMediumImage;
@UI("#card-with-media-size-lg-image")
public static Card cardWithLargeImage;
@UI("#card-with-media-size-xl-image")
public static Card cardWithExtraLargeImage;
}