本文整理汇总了Python中Actions.Actions.gotoApptMgmtMenu方法的典型用法代码示例。如果您正苦于以下问题:Python Actions.gotoApptMgmtMenu方法的具体用法?Python Actions.gotoApptMgmtMenu怎么用?Python Actions.gotoApptMgmtMenu使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Actions.Actions
的用法示例。
在下文中一共展示了Actions.gotoApptMgmtMenu方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: sc_test012
# 需要导入模块: from Actions import Actions [as 别名]
# 或者: from Actions.Actions import gotoApptMgmtMenu [as 别名]
def sc_test012(test_suite_details):
'''
This test adds a new user with SDOB keys and creates & verifies appointments in timeslots outside a clinic's normal operating window
'''
testname = sys._getframe().f_code.co_name
test_driver = TestHelper.TestDriver(testname)
test_driver.pre_test_run(test_suite_details)
try:
# create new user with SDOB keys
VistA1 = test_driver.connect_VistA(test_suite_details)
SC = Actions(VistA1, user='SM1234', code='SM1234!!!')
SC.signon()
SC.adduser(name='CRANE,JON', ssn='000000065', gender='M', initials='JC', acode='fakejon1', vcode1='1SWUSH1234!!')
SC.signoff()
VistA1 = test_driver.connect_VistA(testname + '_01', result_dir, namespace)
SC = Actions(VistA1)
SC.sigsetup(acode='fakejon1', vcode1='1SWUSH1234!!', vcode2='1SWUSH12345!!', sigcode='JONC123')
SC.signoff()
# Create appointment outside Clinic1's operating hours via fakedoc1
VistA2 = test_driver.connect_VistA(testname + '_02', result_dir, namespace)
SC = SCActions(VistA2, user='fakedoc1', code='[email protected]#$')
SC.signon()
SC.gotoApptMgmtMenu()
SC.makeapp(patient='333224444', clinic='Clinic1', datetime='[email protected]', fresh='No', badtimeresp='noslot')
SC.signoff()
# Create appointment outside Clinic1's operating hours via fakejon1 (SDOB key)
VistA3 = test_driver.connect_VistA(testname + '_02', result_dir, namespace)
SC = SCActions(VistA3, user='fakejon1', code='1SWUSH12345!!')
SC.signon()
SC.gotoApptMgmtMenu()
SC.makeapp(patient='333224444', clinic='Clinic1', datetime='[email protected]', fresh='No', badtimeresp='overbook')
SC.signoff()
except TestHelper.TestError, e:
test_driver.exception_handling(test_suite_details, e)
示例2: sc_test012
# 需要导入模块: from Actions import Actions [as 别名]
# 或者: from Actions.Actions import gotoApptMgmtMenu [as 别名]
def sc_test012(resultlog, result_dir, namespace):
'''
This test adds a new user with SDOB keys and creates & verifies appointments in timeslots outside a clinic's normal operating window
'''
testname = sys._getframe().f_code.co_name
resultlog.write('\n' + testname + ', ' + str(datetime.datetime.today()) + ': ')
logging.debug('\n' + testname + ', ' + str(datetime.datetime.today()) + ': ')
try:
# Create new user with SDOB keys
VistA1 = connect_VistA(testname, result_dir, namespace)
SC = Actions(VistA1, user='SM1234', code='SM12345!!')
SC.signon()
SC.adduser(name='CRANE,JON', ssn='000000065', gender='M', initials='JC', acode='fakejon1', vcode1='1SWUSH1234!!')
SC.signoff()
VistA1 = connect_VistA(testname + '_01', result_dir, namespace)
SC = Actions(VistA1)
SC.sigsetup(acode='fakejon1', vcode1='1SWUSH1234!!', vcode2='1SWUSH12345!!', sigcode='JONC123')
SC.signoff()
# Create appointment outside Clinic1's operating hours via fakedoc1
VistA2 = connect_VistA(testname + '_02', result_dir, namespace)
SC = SCActions(VistA2, user='fakedoc1', code='[email protected]#$')
SC.signon()
SC.gotoApptMgmtMenu()
SC.makeapp(patient='333224444', clinic='Clinic1', datetime='[email protected]', fresh='No', badtimeresp='noslot')
SC.signoff()
# Create appointment outside Clinic1's operating hours via fakejon1 (SDOB key)
VistA3 = connect_VistA(testname + '_02', result_dir, namespace)
SC = SCActions(VistA3, user='fakejon1', code='1SWUSH12345!!')
SC.signon()
SC.gotoApptMgmtMenu()
SC.makeapp(patient='333224444', clinic='Clinic1', datetime='[email protected]', fresh='No', badtimeresp='overbook')
SC.signoff()
except TestHelper.TestError, e:
resultlog.write('\nEXCEPTION ERROR:' + str(e))
logging.error('*****exception*********' + str(e))
示例3: sc_test012
# 需要导入模块: from Actions import Actions [as 别名]
# 或者: from Actions.Actions import gotoApptMgmtMenu [as 别名]
def sc_test012(resultlog, result_dir, namespace):
"""
This test adds a new user with SDOB keys and creates & verifies appointments in timeslots outside a clinic's normal operating window
"""
testname = sys._getframe().f_code.co_name
resultlog.write("\n" + testname + ", " + str(datetime.datetime.today()) + ": ")
logging.debug("\n" + testname + ", " + str(datetime.datetime.today()) + ": ")
try:
# Create new user with SDOB keys
VistA1 = connect_VistA(testname, result_dir, namespace)
SC = Actions(VistA1, user="SM1234", code="SM12345!!")
SC.signon()
SC.adduser(
name="CRANE,JON", ssn="000000065", gender="M", initials="JC", acode="fakejon1", vcode1="1SWUSH1234!!"
)
SC.signoff()
VistA1 = connect_VistA(testname + "_01", result_dir, namespace)
SC = Actions(VistA1)
SC.sigsetup(acode="fakejon1", vcode1="1SWUSH1234!!", vcode2="1SWUSH12345!!", sigcode="JONC123")
SC.signoff()
# Create appointment outside Clinic1's operating hours via fakedoc1
VistA2 = connect_VistA(testname + "_02", result_dir, namespace)
SC = SCActions(VistA2, user="fakedoc1", code="[email protected]#$")
SC.signon()
SC.gotoApptMgmtMenu()
SC.makeapp(patient="333224444", clinic="Clinic1", datetime="[email protected]", fresh="No", badtimeresp="noslot")
SC.signoff()
# Create appointment outside Clinic1's operating hours via fakejon1 (SDOB key)
VistA3 = connect_VistA(testname + "_02", result_dir, namespace)
SC = SCActions(VistA3, user="fakejon1", code="1SWUSH12345!!")
SC.signon()
SC.gotoApptMgmtMenu()
SC.makeapp(patient="333224444", clinic="Clinic1", datetime="[email protected]", fresh="No", badtimeresp="overbook")
SC.signoff()
except TestHelper.TestError, e:
resultlog.write("\nEXCEPTION ERROR:" + str(e))
logging.error("*****exception*********" + str(e))