-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Igor Vlasiuk
committed
Dec 6, 2023
1 parent
ac62b1b
commit 9dc3884
Showing
2 changed files
with
20 additions
and
20 deletions.
There are no files selected for viewing
12 changes: 6 additions & 6 deletions
12
jdi-light-angular-tests/src/main/java/io/github/com/pages/DividerPage.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,22 @@ | ||
package io.github.com.pages; | ||
|
||
import com.epam.jdi.light.angular.elements.common.Divider; | ||
import com.epam.jdi.light.elements.common.UIElement; | ||
import com.epam.jdi.light.elements.common.Label; | ||
import com.epam.jdi.light.elements.complex.JList; | ||
import com.epam.jdi.light.elements.pageobjects.annotations.locators.UI; | ||
|
||
public class DividerPage extends NewAngularPage { | ||
|
||
@UI("/descendant::h3[1]") | ||
public static UIElement textWithDefaultDividers; | ||
@UI("h2.example-h2") | ||
public static Label textWithBasicDivider; | ||
|
||
@UI("#divider-list:first-of-type > mat-divider[role=\"separator\"]") | ||
public static JList<Divider> defaultDividersSeparators; | ||
public static JList<Divider> defaultDividers; | ||
|
||
@UI("#divider-list:nth-of-type(2) > mat-divider[role=\"separator\"]") | ||
public static JList<Divider> insetDividerSeparators; | ||
public static JList<Divider> insetDivider; | ||
|
||
@UI(".vertical-dividers > mat-divider[role=\"separator\"]") | ||
public static JList<Divider> verticalDividerSeparators; | ||
public static JList<Divider> verticalDivider; | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters