LRR/test/SeleniumIbrahim/test_kit/actor.py

16 lines
343 B
Python
Raw Normal View History

class Actor:
def __init__(self, password, student_id):
self.password = password
self.student_id = student_id
def setPassword(self, password):
self.password = password
def setStudentID(self, student_id):
self.student_id = student_id
def getPassword(self):
return self.password
def getStudentID(self):
return self.student_id