Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/main/java/com/seleniumtests/webpage/CalculatorScreen.java
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,10 @@
*/
public class CalculatorScreen extends PageObject {

public static void main(String[] args){

}

public CalculatorScreen() throws Exception { }

/**
Expand Down
4 changes: 4 additions & 0 deletions src/main/java/com/seleniumtests/webpage/GoogleHomePage.java
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@
*/
public class GoogleHomePage extends PageObject {

public static void main(String[] args){

}

private static final TextFieldElement searchTextBox = new TextFieldElement("search Text Box",
Locator.locateByName("q"));

Expand Down
3 changes: 3 additions & 0 deletions src/main/java/com/seleniumtests/webpage/LoginPage.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@
* Created by tarun on 3/22/16.
*/
public class LoginPage extends PageObject {
public static void main(String[] args){

}

private static final TextFieldElement userNameTextBox = new TextFieldElement("Username Textbox",
locateByName("usernameLoginPage"));
Expand Down
3 changes: 3 additions & 0 deletions src/main/java/com/seleniumtests/webpage/RegistrationPage.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@
* <p/>Date: 10/2/13 Time: 6:26 PM
*/
public class RegistrationPage extends PageObject {
public static void main(String[] args){

}

private static final TextFieldElement firstNameTextbox = new TextFieldElement("First name text box",
locateByName("firstname"));
Expand Down
4 changes: 4 additions & 0 deletions src/main/java/com/seleniumtests/webpage/SauceLabsPage.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@


public class SauceLabsPage extends PageObject {

public static void main(String[] args){

}
public SauceLabsPage() throws Exception {
}

Expand Down
4 changes: 4 additions & 0 deletions src/main/java/com/seleniumtests/webpage/UICatalogScreen.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@

public class UICatalogScreen extends PageObject {

public static void main(String[] args){

}

public UICatalogScreen() throws Exception { }

/**
Expand Down