use of com.wikia.webdriver.common.users.CreateUser in project selenium-tests by Wikia.
the class SignupTests method MercurySignupTest_006_japaneseUserSignup.
@Test(groups = "MercurySignupTest_006")
@Execute(onWikia = "ja.ja-test")
public void MercurySignupTest_006_japaneseUserSignup() {
init();
String japanName = "ユーザー" + DateTime.now().getMillis();
String japanPAssword = "ユーザザー" + DateTime.now().getMillis();
signUp(new CreateUser().withName(japanName).withPass(japanPAssword).create()).verifyAvatarAfterSignup();
}
use of com.wikia.webdriver.common.users.CreateUser in project selenium-tests by Wikia.
the class SignupTests method MercurySignupTest_004_signupErrorBadPassword.
@Test(groups = "MercurySignupTest_004")
public void MercurySignupTest_004_signupErrorBadPassword() {
init();
String random = "User" + DateTime.now().getMillis();
signUp(new CreateUser().withName(random).withPass(random).create()).verifyPasswordError();
}
use of com.wikia.webdriver.common.users.CreateUser in project selenium-tests by Wikia.
the class SignupTests method MercurySignupTest_001_successfulSignup.
@Test(groups = "MercurySignupTest_001")
public void MercurySignupTest_001_successfulSignup() {
init();
signUp(new CreateUser().create()).verifyAvatarAfterSignup();
}
use of com.wikia.webdriver.common.users.CreateUser in project selenium-tests by Wikia.
the class SignupTests method MercurySignupTest_005_signupErrorTooYoungUser.
@Test(groups = "MercurySignupTest_005")
public void MercurySignupTest_005_signupErrorTooYoungUser() {
init();
DateTime wrongBirthDate = new DateTime(2009, 12, 12, 12, 0, 0);
signUp(new CreateUser().withBirthday(wrongBirthDate).create()).verifyBirthdateError();
}
Aggregations