2021-10-23 22:21:33 +08:00
|
|
|
from actor import Actor
|
|
|
|
from selenium.webdriver.common.by import By
|
|
|
|
from selenium.webdriver.support.ui import WebDriverWait
|
|
|
|
from selenium.webdriver.support import expected_conditions as EC
|
|
|
|
import sys, traceback
|
|
|
|
|
|
|
|
class Instructor(Actor):
|
|
|
|
|
|
|
|
"""
|
|
|
|
This class contains all the major scenarios an instructor system actor can execute
|
|
|
|
automated by Selenium framework.
|
|
|
|
|
|
|
|
Attributes:
|
|
|
|
- password: password string.
|
|
|
|
- student_id: student ID number (or Instructor ID).
|
|
|
|
- utility: a utility object of the MyUtility class.
|
|
|
|
|
|
|
|
Methods:
|
|
|
|
- private login(): automates login process.
|
|
|
|
- post_lab_report(): automates instructor posting lab report submission portal for students
|
|
|
|
to submit assignments.
|
|
|
|
- create_course_portal(): automates instructor creating course portal for students
|
|
|
|
to join a course.
|
|
|
|
- post_lab_report_results(): automates instructor announcing lab submission marking
|
|
|
|
decission.
|
|
|
|
- manage_deadline(): automates instructor extending lab report submission portal deadline.
|
|
|
|
|
|
|
|
TODO:
|
|
|
|
- manage_deadline()
|
|
|
|
"""
|
|
|
|
|
|
|
|
def __init__(self, password, student_id, utility):
|
|
|
|
super().__init__(password, student_id)
|
|
|
|
self.utility = utility
|
|
|
|
|
|
|
|
def post_lab_report(self, group = 0):
|
|
|
|
|
|
|
|
"""This method automates instructor posting lab report submission portal for students
|
|
|
|
for students to submit assignment.
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
- group: int
|
|
|
|
0 indicates that this lab report submission portal is intended for individuals
|
|
|
|
1 indicates that this lab report submission portal is intended for groups
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
- 0 on success.
|
|
|
|
- 1 on failure to complete case execution.
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
try:
|
|
|
|
#Login
|
|
|
|
driver = self.utility.login(self)
|
|
|
|
|
|
|
|
#Navigate to course page
|
|
|
|
self.utility.open_course_page(driver)
|
|
|
|
|
|
|
|
dateStr = self.utility.getTodayDate() # this is needed for deadline.
|
|
|
|
|
|
|
|
#wait until the lab submission form shows up
|
|
|
|
wait2 = WebDriverWait(driver, 10)
|
2021-12-03 10:58:07 +08:00
|
|
|
new_lab_assignment_form = wait2.until(EC.presence_of_element_located((By.ID, "newlab_form")))
|
2021-10-23 22:21:33 +08:00
|
|
|
|
|
|
|
#Fill the required form fields and submit.
|
2021-11-29 02:19:37 +08:00
|
|
|
lab_date = new_lab_assignment_form.find_element(By.ID, "date")
|
|
|
|
lab_date.send_keys(dateStr)
|
|
|
|
lab_title = new_lab_assignment_form.find_element(By.ID, "lab_title")
|
2021-10-23 22:21:33 +08:00
|
|
|
lab_title.send_keys("TESTASSIGNMENT"+str(dateStr))
|
2021-12-03 10:58:07 +08:00
|
|
|
lab_instructions = new_lab_assignment_form.find_element(By.ID, "lab_instructor")
|
2021-10-23 22:21:33 +08:00
|
|
|
lab_instructions.send_keys("TESTINSTRUCTIONS"+str(dateStr))
|
2021-11-29 02:19:37 +08:00
|
|
|
lab_marks = new_lab_assignment_form.find_element(By.ID, "lab_mark")
|
2021-10-23 22:21:33 +08:00
|
|
|
lab_marks.send_keys("4")
|
|
|
|
|
|
|
|
#if group == 0 select individual submission, if group == 1 select group submission
|
|
|
|
if group == 0:
|
2021-12-03 10:58:07 +08:00
|
|
|
submission_type = new_lab_assignment_form.find_element(By.ID, "lab_individual")
|
2021-10-23 22:21:33 +08:00
|
|
|
elif group == 1:
|
2021-12-03 10:58:07 +08:00
|
|
|
submission_type = new_lab_assignment_form.find_element(By.ID, "lab_group")
|
2021-10-23 22:21:33 +08:00
|
|
|
submission_type.click()
|
2021-11-29 02:19:37 +08:00
|
|
|
submit = new_lab_assignment_form.find_element(By.ID, "submit_btn")
|
2021-10-23 22:21:33 +08:00
|
|
|
submit.click()
|
|
|
|
return 0
|
|
|
|
except:
|
|
|
|
print("There was a problem executing this test case")
|
|
|
|
print("Error in \"post_lab_report()\" method, see error_log.txt for more details")
|
|
|
|
err_msg = traceback.format_exc()
|
|
|
|
self.utility.log_error(err_msg)
|
|
|
|
print("Treminating session")
|
|
|
|
self.utility.killSession(driver)
|
|
|
|
return 1
|
|
|
|
|
|
|
|
def create_course_portal(self, joining = 0):
|
|
|
|
|
|
|
|
"""This method automates instructor creating course portal for students
|
|
|
|
to join a course.
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
- joining: int
|
|
|
|
0 indicates that this course does not require approval to join
|
|
|
|
1 indicates that this course require approval to join
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
- 0 on success.
|
|
|
|
- 1 on failure to complete case execution.
|
|
|
|
|
|
|
|
"""
|
|
|
|
try:
|
|
|
|
#Login first in order to create new course.
|
|
|
|
driver = self.utility.login(self)
|
|
|
|
|
|
|
|
#These needed to create a unique course name based on date and time.
|
|
|
|
dateStr = self.utility.getTodayDate()
|
|
|
|
timeStr = self.utility.getTime()
|
|
|
|
|
|
|
|
#Fill the required form fields and submit
|
2021-12-03 10:58:07 +08:00
|
|
|
course_name = driver.find_element(By.ID, "course_name")
|
2021-10-23 22:21:33 +08:00
|
|
|
course_name.send_keys("TESTCOURSE"+str(dateStr)+str(timeStr))
|
|
|
|
|
|
|
|
#This URL is needed to access the same created course via its link in post_lab_report() method.
|
|
|
|
global courseURL
|
|
|
|
courseURL = "TESTCOURSE"+str(dateStr)+str(timeStr)
|
2021-12-03 10:58:07 +08:00
|
|
|
course_code = driver.find_element(By.ID, "course_code")
|
2021-10-23 22:21:33 +08:00
|
|
|
course_code.send_keys("TC"+str(dateStr)+str(timeStr))
|
|
|
|
self.utility.storeCourseCode("TC"+str(dateStr)+str(timeStr))#Store course code to be used
|
2021-12-03 10:58:07 +08:00
|
|
|
academic_year = driver.find_element(By.ID, "academic_year") #later by student.
|
2021-10-23 22:21:33 +08:00
|
|
|
academic_year.send_keys("2021")
|
2021-12-03 10:58:07 +08:00
|
|
|
faculty = driver.find_element(By.ID, "faculty")
|
2021-10-23 22:21:33 +08:00
|
|
|
faculty.send_keys("TESTING DEPARTMENT")
|
|
|
|
|
|
|
|
#If joining == 0 does not require join approval, if joining == 1 requires join approval
|
|
|
|
if joining == 0 :
|
2021-12-03 10:58:07 +08:00
|
|
|
joining_students = driver.find_element(By.ID, "join_no")
|
2021-10-23 22:21:33 +08:00
|
|
|
elif group == 1:
|
2021-12-03 10:58:07 +08:00
|
|
|
joining_students = driver.find_element(By.ID, "join_yes")
|
2021-10-23 22:21:33 +08:00
|
|
|
joining_students.click()
|
|
|
|
submit = driver.find_element(By.ID, "portal_btn")
|
|
|
|
submit.click()
|
|
|
|
return 0
|
|
|
|
|
|
|
|
except:
|
|
|
|
print("There was a problem executing this test case")
|
|
|
|
print("Error in \"create_course_portal()\" method, see error_log.txt for more details")
|
|
|
|
err_msg = traceback.format_exc()
|
|
|
|
self.utility.log_error(err_msg)
|
|
|
|
print("Treminating session...")
|
|
|
|
self.utility.killSession(driver)
|
|
|
|
return 1
|
|
|
|
|
|
|
|
def mark_submission(self):
|
|
|
|
|
|
|
|
"""This method automates an instructor marking a lab submission.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
- 0 on success.
|
|
|
|
- 1 on failure to complete case execution.
|
|
|
|
"""
|
|
|
|
try:
|
|
|
|
#Login
|
|
|
|
driver = self.utility.login(self)
|
|
|
|
|
|
|
|
#Navigate to course page
|
|
|
|
self.utility.open_course_page(driver)
|
|
|
|
|
|
|
|
#Wait until the submission portal card appears
|
|
|
|
wait2 = WebDriverWait(driver, 10)
|
2021-12-05 00:59:43 +08:00
|
|
|
view = wait2.until(EC.presence_of_element_located((By.ID, "view_submissions_link_1")))
|
2021-10-23 22:21:33 +08:00
|
|
|
view.click()
|
|
|
|
|
|
|
|
#Locate and click the 'Mark Submission' btn
|
|
|
|
wait3 = WebDriverWait(driver, 10)
|
2021-12-05 00:59:43 +08:00
|
|
|
mark_submission = wait3.until(EC.presence_of_element_located((By.ID, "mark_submission_btn_1")))
|
2021-10-23 22:21:33 +08:00
|
|
|
mark_submission.click()
|
|
|
|
|
|
|
|
#Fill and submit marking descision
|
|
|
|
wait4 = WebDriverWait(driver, 10)
|
|
|
|
pop_up = wait4.until(EC.presence_of_element_located((By.ID, "submit-form")))
|
|
|
|
mark = pop_up.find_element(By.ID, "marks")
|
|
|
|
mark.send_keys("4")
|
|
|
|
comment = pop_up.find_element(By.ID, "feedback")
|
|
|
|
comment.send_keys("TESTCOMMENT")
|
|
|
|
submit = pop_up.find_element(By.XPATH, "/html/body/div[4]/div[2]/div/button[1]")
|
|
|
|
submit.click()
|
|
|
|
return 0
|
|
|
|
|
|
|
|
except:
|
|
|
|
print("There was a problem executing this test case")
|
|
|
|
print("Error in \"mark_submission()\" method, see error_log.txt for more details")
|
|
|
|
err_msg = traceback.format_exc()
|
|
|
|
self.utility.log_error(err_msg)
|
|
|
|
print("Treminating session...")
|
|
|
|
self.utility.killSession(driver)
|
|
|
|
return 1
|
|
|
|
|
|
|
|
def manage_deadline(self):
|
|
|
|
|
|
|
|
"""This method automates instructor extending lab report submission portal deadline.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
- 0 on success.
|
|
|
|
- 1 on failure to complete case execution.
|
|
|
|
|
|
|
|
"""
|
|
|
|
try:
|
|
|
|
#Login
|
|
|
|
driver = self.utility.login(self)
|
|
|
|
|
|
|
|
#Navigate to course page
|
|
|
|
self.utility.open_course_page(driver)
|
|
|
|
|
|
|
|
#Wait until lab report assignment list appears.
|
|
|
|
wait = WebDriverWait(driver, 10)
|
2021-12-05 00:59:43 +08:00
|
|
|
extend_deadline = wait.until(EC.presence_of_element_located((By.ID, "extend_deadline_link")))
|
2021-10-23 22:21:33 +08:00
|
|
|
extend_deadline.click()
|
|
|
|
|
|
|
|
#Wait until the extend deadline popup window shows up.
|
|
|
|
wait2 = WebDriverWait(driver, 10)
|
|
|
|
extend_deadline_form = wait2.until(EC.presence_of_element_located((By.ID, "frm")))
|
|
|
|
|
|
|
|
#Insert the new deadline and submit for all.
|
2021-12-05 00:59:43 +08:00
|
|
|
new_date = extend_deadline_form.find_element(By.ID, "new_date")
|
2021-10-23 22:21:33 +08:00
|
|
|
dateStr = self.utility.getTomorrowDate()
|
|
|
|
new_date.send_keys(str(dateStr))
|
2021-12-05 00:59:43 +08:00
|
|
|
target = extend_deadline_form.find_element(By.ID, "extend_for_all")
|
2021-10-23 22:21:33 +08:00
|
|
|
target.click()
|
|
|
|
submit = extend_deadline_form.find_element(By.XPATH, "/html/body/div[3]/div[2]/div/button[1]")
|
|
|
|
submit.click()
|
|
|
|
return 0
|
|
|
|
|
|
|
|
except:
|
|
|
|
print("There was a problem executing this test case")
|
|
|
|
print("Error in \"manage_deadline()\" method, see error_log.txt for more details")
|
|
|
|
err_msg = traceback.format_exc()
|
|
|
|
self.utility.log_error(err_msg)
|
|
|
|
print("Treminating session...")
|
|
|
|
self.utility.killSession(driver)
|
|
|
|
return 1
|