use of org.carefulchameleons.pom.myaccounts.SignInPage in project WebTestingFinalProject by samizirakgamedev.
the class LoginStepdefs method iInsertAnUnregisteredEmail.
@When("I insert an unregistered email")
public void iInsertAnUnregisteredEmail() {
signinPage = new SignInPage(webDriver, "http://automationpractice.com/index.php?controller=authentication&back=my-account");
signinPage.enterLoginEmail("finalproject1@test.com");
}
use of org.carefulchameleons.pom.myaccounts.SignInPage in project WebTestingFinalProject by samizirakgamedev.
the class LoginStepdefs method iEnterMyRegisteredEmail.
@When("I enter my registered email")
public void iEnterMyRegisteredEmail() {
// ??expectedUrl??
signinPage = new SignInPage(webDriver, "http://automationpractice.com/index.php?controller=authentication&back=my-account");
signinPage.enterLoginEmail("finalproject@test.com");
}
use of org.carefulchameleons.pom.myaccounts.SignInPage in project WebTestingFinalProject by samizirakgamedev.
the class LoginStepdefs method iInsertARegisteredEmail.
@When("I insert a registered email")
public void iInsertARegisteredEmail() {
signinPage = new SignInPage(webDriver, "http://automationpractice.com/index.php?controller=authentication&back=my-account");
signinPage.enterLoginEmail("finalproject@test.com");
}
use of org.carefulchameleons.pom.myaccounts.SignInPage in project WebTestingFinalProject by samizirakgamedev.
the class OrderStepdefs method iEnterTheEmailAddressAndThePassword.
@And("I enter the Email Address {string} and the Password {string}")
public void iEnterTheEmailAddressAndThePassword(String email, String password) {
signInPage = new SignInPage(webDriver, "http://automationpractice.com/index.php?controller=authentication&back=my-account");
signInPage.enterLoginEmail(email);
signInPage.enterLoginPassword(password);
}
Aggregations