Last active
August 29, 2015 14:22
-
-
Save avuori/861a3b6142a1576854a9 to your computer and use it in GitHub Desktop.
SignupTest
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
import org.openqa.selenium.By; | |
import org.openqa.selenium.WebDriver; | |
import org.openqa.selenium.WebElement; | |
import org.openqa.selenium.firefox.FirefoxDriver; | |
import org.openqa.selenium.support.ui.ExpectedCondition; | |
import org.openqa.selenium.support.ui.WebDriverWait; | |
import java.util.UUID; | |
public class SignupTest { | |
public static void main(String[] args) { | |
WebDriver driver = new FirefoxDriver(); | |
// Open website | |
driver.get("http://testsite.usetrace.com"); | |
// Find the link to registration form | |
WebElement link = driver.findElement(By.cssSelector("[data-name='Register']")); | |
// Click the link | |
link.click(); | |
// Generate a random email | |
final String randomEmail = randomEmail(); | |
// Find the email form field | |
WebElement email = driver.findElement(By.id("register-email")); | |
// Type the random email to the form | |
email.sendKeys(randomEmail); | |
// Find the password form field | |
WebElement password = driver.findElement(By.id("register-password")); | |
// Type a password to the form. This needs not be unique. | |
password.sendKeys("John123"); | |
// Submit the sign up form | |
password.submit(); | |
// Check the sign up succeeded by checking that the randomized | |
// email appears in the website's header bar. | |
(new WebDriverWait(driver, 10)).until(new ExpectedCondition<Boolean>() { | |
public Boolean apply(WebDriver d) { | |
WebElement header = d.findElement(By.id("header-login")); | |
return header.getText().contains(randomEmail); | |
} | |
}); | |
//Close the browser | |
driver.quit(); | |
} | |
private static String randomEmail() { | |
return "random-" + UUID.randomUUID().toString() + "@example.com"; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment