public static IE_TeamProfessor login(this IE_TeamProfessor ieTeamProfessor, string username, string password)
 {
     ieTeamProfessor.logoff();
     ie.field("User Name").flash().value(username);
     ie.field("Password").flash().value(password);
     ie.button("Enter").flash().click();
     return(ieTeamProfessor);
 }
 public static API_IE_ExecutionGUI homePage(this IE_TeamProfessor ieTeamProfessor)
 {
     return(ieTeamProfessor.open("ed/portal"));
 }
 public static IE_TeamProfessor viewProfile(this IE_TeamProfessor ieTeamProfessor, string profileValue)
 {
     ieTeamProfessor.open("Manager/User/UserProfile.aspx?key={0}".format(profileValue.urlEncode()));
     return(ieTeamProfessor);
 }
 public static IE_TeamProfessor viewProfile(this IE_TeamProfessor ieTeamProfessor, int profileId)
 {
     return(ieTeamProfessor.viewProfile("Person|{0}".format(profileId)));
 }
 public static IE_TeamProfessor userList(this IE_TeamProfessor ieTeamProfessor)
 {
     return(ieTeamProfessor.open("Manager/User/List.aspx"));
 }
 public static IE_TeamProfessor administration(this IE_TeamProfessor ieTeamProfessor)
 {
     return(ieTeamProfessor.open("Manager"));
 }
 public static IE_TeamProfessor myProfile(this IE_TeamProfessor ieTeamProfessor)
 {
     return(ieTeamProfessor.open("Portal/UserProfile/UserProfile.aspx"));
 }
 public static IE_TeamProfessor logoff(this IE_TeamProfessor ieTeamProfessor)
 {
     return(ieTeamProfessor.open("ed/logoff.asp"));
 }