-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
4987-88-refactoringSelectMoveToNewPage
- Loading branch information
Showing
24 changed files
with
96 additions
and
144 deletions.
There are no files selected for viewing
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
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
91 changes: 46 additions & 45 deletions
91
...hub/com/pages/sections/SelectSection.java → .../java/io/github/com/pages/SelectPage.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,45 +1,46 @@ | ||
package io.github.com.pages.sections; | ||
|
||
import com.epam.jdi.light.angular.elements.common.Checkbox; | ||
import com.epam.jdi.light.angular.elements.complex.MaterialSelector; | ||
import com.epam.jdi.light.angular.elements.complex.NativeSelector; | ||
import com.epam.jdi.light.elements.composite.Section; | ||
import com.epam.jdi.light.ui.html.elements.common.Text; | ||
|
||
public class SelectSection extends Section { | ||
public static MaterialSelector basicMatSelect; | ||
public static NativeSelector basicNativeSelect; | ||
|
||
public static MaterialSelector twoBindingSelect; | ||
public static Text selectBindingConfirm; | ||
|
||
public static MaterialSelector formMatSelect; | ||
public static Text formMatSelectConfirm; | ||
|
||
public static NativeSelector formNativeSelect; | ||
public static Text formNativeSelectConfirm; | ||
|
||
public static MaterialSelector formMatFeatureSelect; | ||
public static NativeSelector formNativeFeatureSelect; | ||
|
||
public static MaterialSelector disableMatSelect; | ||
public static NativeSelector disableNativeSelect; | ||
public static Checkbox disableCheckboxSelect; | ||
|
||
public static MaterialSelector resetMatSelect; | ||
public static NativeSelector resetNativeSelect; | ||
|
||
public static MaterialSelector optionGroupsMatSelect; | ||
public static NativeSelector optionGroupsNativeSelect; | ||
|
||
public static MaterialSelector multipleSelect; | ||
|
||
public static MaterialSelector customTriggerTextSelect; | ||
|
||
public static MaterialSelector noOptionRippleSelect; | ||
|
||
public static MaterialSelector customPanelStylingSelect; | ||
|
||
public static MaterialSelector matErrorStateMatcherSelect; | ||
public static NativeSelector nativeErrorStateMatcherSelect; | ||
} | ||
package io.github.com.pages; | ||
|
||
import com.epam.jdi.light.angular.elements.common.Checkbox; | ||
import com.epam.jdi.light.angular.elements.complex.MaterialSelector; | ||
import com.epam.jdi.light.angular.elements.complex.NativeSelector; | ||
import com.epam.jdi.light.ui.html.elements.common.Text; | ||
|
||
public class SelectPage extends NewAngularPage { | ||
|
||
public static MaterialSelector basicMatSelect; | ||
public static NativeSelector basicNativeSelect; | ||
|
||
public static MaterialSelector twoBindingSelect; | ||
public static Text selectBindingConfirm; | ||
|
||
public static MaterialSelector formMatSelect; | ||
public static Text formMatSelectConfirm; | ||
|
||
public static NativeSelector formNativeSelect; | ||
public static Text formNativeSelectConfirm; | ||
|
||
public static MaterialSelector formMatFeatureSelect; | ||
public static NativeSelector formNativeFeatureSelect; | ||
|
||
public static MaterialSelector disableMatSelect; | ||
public static NativeSelector disableNativeSelect; | ||
public static Checkbox disableCheckboxSelect; | ||
|
||
public static MaterialSelector resetMatSelect; | ||
public static NativeSelector resetNativeSelect; | ||
|
||
public static MaterialSelector optionGroupsMatSelect; | ||
public static NativeSelector optionGroupsNativeSelect; | ||
|
||
public static MaterialSelector multipleSelect; | ||
|
||
public static MaterialSelector customTriggerTextSelect; | ||
|
||
public static MaterialSelector noOptionRippleSelect; | ||
|
||
public static MaterialSelector customPanelStylingSelect; | ||
|
||
public static MaterialSelector matErrorStateMatcherSelect; | ||
public static NativeSelector nativeErrorStateMatcherSelect; | ||
|
||
} |
13 changes: 6 additions & 7 deletions
13
...c/test/java/io/github/epam/angular/tests/elements/complex/select/BasicMatSelectTests.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
5 changes: 1 addition & 4 deletions
5
...est/java/io/github/epam/angular/tests/elements/complex/select/BasicNativeSelectTests.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
5 changes: 1 addition & 4 deletions
5
...a/io/github/epam/angular/tests/elements/complex/select/CustomPanelStylingSelectTests.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
14 changes: 7 additions & 7 deletions
14
...va/io/github/epam/angular/tests/elements/complex/select/CustomTriggerTextSelectTests.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
7 changes: 2 additions & 5 deletions
7
...test/java/io/github/epam/angular/tests/elements/complex/select/DisableMatSelectTests.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
5 changes: 1 addition & 4 deletions
5
...t/java/io/github/epam/angular/tests/elements/complex/select/DisableNativeSelectTests.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
5 changes: 1 addition & 4 deletions
5
.../java/io/github/epam/angular/tests/elements/complex/select/FormMatFeatureSelectTests.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
7 changes: 2 additions & 5 deletions
7
...rc/test/java/io/github/epam/angular/tests/elements/complex/select/FormMatSelectTests.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
5 changes: 1 addition & 4 deletions
5
...va/io/github/epam/angular/tests/elements/complex/select/FormNativeFeatureSelectTests.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
7 changes: 2 additions & 5 deletions
7
...test/java/io/github/epam/angular/tests/elements/complex/select/FormNativeSelectTests.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
5 changes: 1 addition & 4 deletions
5
...io/github/epam/angular/tests/elements/complex/select/MatErrorStateMatcherSelectTests.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
13 changes: 6 additions & 7 deletions
13
...c/test/java/io/github/epam/angular/tests/elements/complex/select/MultipleSelectTests.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
Oops, something went wrong.