Package test.pageobject_example.pages

Examples of test.pageobject_example.pages.VimeoJoinPage.open()


   */
  @Test
  public void testSignupSuccess(){
    VimeoJoinPage joinPage = new VimeoJoinPage(driver);
    //go to page
    joinPage.open();
   
    //enter data
    joinPage.enterFirst_and_LastName(first_and_LastName);
    joinPage.enterEmail(email);
    joinPage.enterPassword(password);
View Full Code Here


    //invalid-format-email address
    String inValidEmail = "chon.email.com";

    VimeoJoinPage joinPage = new VimeoJoinPage(driver);
    //go to page
    joinPage.open();

    //enter data
    joinPage.enterFirst_and_LastName(first_and_LastName);
    joinPage.enterEmail(inValidEmail);
    joinPage.enterPassword(password);
View Full Code Here

   */
  @Test
  public void testSignupNo_password(){
    VimeoJoinPage joinPage = new VimeoJoinPage(driver);
    //go to page
    joinPage.open();

    //enter data
    joinPage.enterFirst_and_LastName(first_and_LastName);
    joinPage.enterEmail(email);
   
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.