Skip to content

Instantly share code, notes, and snippets.

@avuori
Last active August 29, 2015 14:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save avuori/861a3b6142a1576854a9 to your computer and use it in GitHub Desktop.
Save avuori/861a3b6142a1576854a9 to your computer and use it in GitHub Desktop.
SignupTest
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