//Update profile public void EditProfile() { TestUtlity Utlity = new TestUtlity(); Utlity.Login(driver); Utlity.UpdateProfile(driver, test, extent); }
//Create new profile public void CreateNewProfile() { TestUtlity Utlity = new TestUtlity(); Utlity.Login(driver); Utlity.NewProfile(driver, test, extent); }
//Create new profile public void ClickEmailVerificationLink() { TestUtlity Utlity = new TestUtlity(); Utlity.Login(driver); EmailVerification Email = new EmailVerification(); Email.ClickVerificationLink(driver, test, extent); }