Package teammates.testing.lib

Examples of teammates.testing.lib.BrowserInstance.waitAWhile()


  }

  @Override
  public void run() {
    BrowserInstance bi = BrowserInstancePool.request();
    bi.waitAWhile(3000);
    bi.studentLogin(student.email, student.password);
   
    bi.clickEvaluationTab();
    bi.justWait();
View Full Code Here


    studentSubmitEvaluation();
  }
 
  private void studentSubmitEvaluation() {
    BrowserInstance bi = BrowserInstancePool.request();
    bi.waitAWhile(3000);
    bi.studentLogin(student.email, student.password);
   
    bi.clickEvaluationTab();
    bi.waitForElementPresent(bi.studentGetPendingEvaluationName(scn.course.courseId, scn.evaluation.name));
    bi.studentClickDoEvaluation(scn.course.courseId, scn.evaluation.name);
View Full Code Here

    studentSubmitEvaluation();
  }
 
  private void studentSubmitEvaluation() {
    BrowserInstance bi = BrowserInstancePool.request();
    bi.waitAWhile(3000);
    bi.studentLogin(student.email, student.password);
   
    bi.clickEvaluationTab();
    bi.waitForElementPresent(bi.studentGetPendingEvaluationName(scn.course.courseId, scn.evaluation.name));
    bi.studentClickDoEvaluation(scn.course.courseId, scn.evaluation.name);
View Full Code Here

  }

  @Override
  public void run() {
    BrowserInstance bi = BrowserInstancePool.request();
    bi.waitAWhile(3000);
    bi.studentLogin(student.email, student.password);
   
    bi.clickEvaluationTab();
    bi.justWait();
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.