Examples of VimeoProfilePage


Examples of test.pageobject_example.pages.VimeoProfilePage

   
    //Verify signup success: signup page title should be equal
    assertTrue("Sign up successful" , signupPage.isPageLoad());
   
    //Go to the profile page and get the profile name
    VimeoProfilePage profilePage = signupPage.clickProfileLink();
    String userName = profilePage.getProfileName()
   
    //Verify data: the Profile user Name should be equal
    assertEquals("The user name should be equal.", first_and_LastName, userName);
       
    //logout for the next test.
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.