Package teammates.testing.object

Examples of teammates.testing.object.TeamFormingSession


   */
  public void testDuplicateEvaluation() {
    cout("TestCoordTeamForming: TestCreatingTeamFormingSession previously created");
    gotoTeamForming();
   
    TeamFormingSession teamForming = sc.teamFormingSession;
    clickTeamFormingTab();
    // Select the course
    waitAndClick(inputCourseID);
    cout("click " + teamForming.courseID);
    selectDropdownByValue(By.id("courseid"), teamForming.courseID);
View Full Code Here


    assertEquals(bi.ERROR_MESSAGE_TEAMFORMINGSESSION_EXISTS, bi.getElementText(bi.statusMessage));
    System.out.println("========== testCoordAddDuplicateTeamFormingSessionFailed ==========");
  }

  public void testCoordAddTeamFormingSessionWithInvalidInputFailed() {
    TeamFormingSession teamForming = scn.teamFormingSession;
    Integer nextTimeValue = Integer.parseInt(teamForming.nextTimeValue)-2;
   
    bi.gotoTeamForming();
    bi.addTeamFormingSession(teamForming.courseID, teamForming.dateValue, nextTimeValue.toString(),
        teamForming.gracePeriod, teamForming.instructions, teamForming.profileTemplate);
View Full Code Here

   */
  public void testDuplicateEvaluation() {
    cout("TestCoordTeamForming: TestCreatingTeamFormingSession previously created");
    gotoTeamForming();
   
    TeamFormingSession teamForming = sc.teamFormingSession;
    clickTeamFormingTab();
    // Select the course
    waitAndClick(inputCourseID);
    cout("click " + teamForming.courseID);
    selectDropdownByValue(By.id("courseid"), teamForming.courseID);
View Full Code Here

TOP

Related Classes of teammates.testing.object.TeamFormingSession

Copyright © 2018 www.massapicom. 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.