-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[#9]Enabled Actions and Traverses to PageObjects from DataObjects. It…
…'s also possible to self reference the DataObjects in action methods
- Loading branch information
1 parent
d33748e
commit a3c6f32
Showing
28 changed files
with
323 additions
and
46 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,5 +27,5 @@ | |
*/ | ||
Class<? extends ActionImpl> value(); | ||
|
||
|
||
String[] attributeNameToConstructorMapping () default {}; | ||
} |
5 changes: 5 additions & 0 deletions
5
pogen4selenium-api/src/main/java/io/toolisticon/pogen4selenium/api/ActionFileUpload.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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
package io.toolisticon.pogen4selenium.api; | ||
|
||
public @interface ActionFileUpload { | ||
|
||
} |
3 changes: 3 additions & 0 deletions
3
pogen4selenium-api/src/main/java/io/toolisticon/pogen4selenium/runtime/CommonByLocators.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
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
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
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
9 changes: 9 additions & 0 deletions
9
.../src/main/java/io/toolisticon/pogen4selenium/example/withoutpagefactory/ExternalPage.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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
package io.toolisticon.pogen4selenium.example.withoutpagefactory; | ||
|
||
import io.toolisticon.pogen4selenium.api.PageObject; | ||
import io.toolisticon.pogen4selenium.api.PageObjectParent; | ||
|
||
@PageObject | ||
public interface ExternalPage extends PageObjectParent<ExternalPage>{ | ||
|
||
} |
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
9 changes: 9 additions & 0 deletions
9
...ple/src/main/java/io/toolisticon/pogen4selenium/example/withpagefactory/ExternalPage.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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
package io.toolisticon.pogen4selenium.example.withpagefactory; | ||
|
||
import io.toolisticon.pogen4selenium.api.PageObject; | ||
import io.toolisticon.pogen4selenium.api.PageObjectParent; | ||
|
||
@PageObject | ||
public interface ExternalPage extends PageObjectParent<ExternalPage>{ | ||
|
||
} |
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
Oops, something went wrong.