本文整理匯總了Python中common_suite_file.CommonSuiteData.user_quit方法的典型用法代碼示例。如果您正苦於以下問題:Python CommonSuiteData.user_quit方法的具體用法?Python CommonSuiteData.user_quit怎麽用?Python CommonSuiteData.user_quit使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類common_suite_file.CommonSuiteData
的用法示例。
在下文中一共展示了CommonSuiteData.user_quit方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: testDepartSuite
# 需要導入模塊: from common_suite_file import CommonSuiteData [as 別名]
# 或者: from common_suite_file.CommonSuiteData import user_quit [as 別名]
class testDepartSuite(unittest.TestCase):
def setUp(self):
#調用驅動
self.browser = setDriver().set_driver()
self.comsuit = CommonSuiteData(self.browser)
self.testdptment = testDepartment(self.browser)
#部門前置條件
self.comsuit.depart_module_prefix_condition()
def test_department(self):
u'''添加和編輯部門'''
self.testdptment.add_edit_department_001()
u'''上移和下移部門'''
self.testdptment.up_down_department_002()
u'''上移和下移部門校驗'''
self.testdptment.up_down_department_check_003()
u'''檢驗添加和編輯部門'''
self.testdptment.check_add_edit_department_004()
u'''刪除部門'''
self.testdptment.del_department_005()
def tearDown(self):
self.comsuit.user_quit()
initDriver().close_driver(self.browser)
示例2: testCommonSuite
# 需要導入模塊: from common_suite_file import CommonSuiteData [as 別名]
# 或者: from common_suite_file.CommonSuiteData import user_quit [as 別名]
class testCommonSuite(unittest.TestCase):
def setUp(self):
#調用驅動
self.browser = setDriver().set_driver()
self.comsuit = CommonSuiteData(self.browser)
def test_common(self):
self.comsuit.module_common_prefix_condition()
self.comsuit.add_user_with_role()
self.comsuit.user_quit()
def tearDown(self):
initDriver().close_driver(self.browser)
示例3: testNetworkResourceSuite
# 需要導入模塊: from common_suite_file import CommonSuiteData [as 別名]
# 或者: from common_suite_file.CommonSuiteData import user_quit [as 別名]
class testNetworkResourceSuite(unittest.TestCase):
def setUp(self):
#調用驅動
self.browser = setDriver().set_driver()
self.comsuit = CommonSuiteData(self.browser)
self.linuxresource = testLinuxResource(self.browser)
self.network = testNetworkResource(self.browser)
self.account = testResourceAccount(self.browser)
#資源前置條件
self.comsuit.networkre_module_prefix_condition()
def test_network_resource(self):
#------------------------------網絡設備資源-----------------------------------
# 添加網絡設備資源
self.network.add_network_resource_001()
# 編輯網絡設備資源
self.network.edit_network_resource_002()
# 校驗網絡設備資源
self.network.check_network_resource_003()
# 添加和編輯網絡設備資源賬號
self.account.add_edit_resource_account_001(_testDataPath.NETWORK_RESOURCE_TEST_DATA_URL, "add_network_account")
#查詢網絡設備資源賬號
self.account.query_resource_account_002(_testDataPath.NETWORK_RESOURCE_TEST_DATA_URL, "query_network_account")
#校驗網絡設備資源賬號
self.account.check_resource_account_003(_testDataPath.NETWORK_RESOURCE_TEST_DATA_URL, "check_network_account")
#刪除網絡設備資源賬號
self.account.del_resource_account_004(_testDataPath.NETWORK_RESOURCE_TEST_DATA_URL, "del_network_account")
#全選刪除網絡設備資源賬號
self.account.bulkdel_resource_account_005(_testDataPath.NETWORK_RESOURCE_TEST_DATA_URL, "bulkdel_network_account")
# 查詢網絡設備資源
self.linuxresource.query_resource_004(_testDataPath.NETWORK_RESOURCE_TEST_DATA_URL, "query_network_resource")
#刪除網絡設備資源
self.linuxresource.del_resource_005(_testDataPath.NETWORK_RESOURCE_TEST_DATA_URL, "del_network_resource")
def tearDown(self):
self.comsuit.user_quit()
initDriver().close_driver(self.browser)
示例4: ServiceNtp
# 需要導入模塊: from common_suite_file import CommonSuiteData [as 別名]
# 或者: from common_suite_file.CommonSuiteData import user_quit [as 別名]
#.........這裏部分代碼省略.........
else:
self.log.log_detail(data[0],True)
u'''編輯服務器IP與周期'''
def edit_ntp_001(self):
#日誌開始記錄
self.log.log_start("editNtp")
#獲取編輯服務器IP與周期的數據
ntp_data = self.get_table_data("mod_ntp")
#點擊保存按鈕彈出框
ntp_msg = self.ntp_msg()
#無檢查點的測試項標識,如果為True說明通過
flag = False
for dataRow in range(len(ntp_data)):
data = ntp_data[dataRow]
try:
#如果不是第一行標題,則讀取數據
if dataRow != 0:
self.frameElem.from_frame_to_otherFrame("rigthFrame")
self.ntp.server_ip(data[2])
#自動與時間同步服務器
self.ntp.check_time_server()
self.ntp.set_cycle_date(data[3])
self.ntp.set_cycle_time(data[4])
self.ntp.save_button()
#返回上級frame
self.frameElem.switch_to_content()
#判斷測試項是否通過
self.cmf.test_win_check_point("xpath", ntp_msg, data, flag)
except Exception as e:
print ("edit ntp fail: ") + str(e)
self.log.log_end("editNtp")
u'''校驗服務器IP'''
def check_ntp_002(self):
#日誌開始記錄
self.log.log_start("checkNtp")
#獲取校驗服務器IP的數據
ntp_data = self.get_table_data("check_ntp")
#點擊保存按鈕彈出框
ntp_msg = self.ntp_msg()
#無檢查點的測試項標識,如果為True說明通過
flag = False
for dataRow in range(len(ntp_data)):
data = ntp_data[dataRow]
try:
#如果不是第一行標題,則讀取數據
if dataRow != 0:
self.frameElem.from_frame_to_otherFrame("rigthFrame")
self.ntp.server_ip(data[2])
self.ntp.save_button()
#返回上級frame
self.frameElem.switch_to_content()
#判斷測試項是否通過
self.cmf.test_win_check_point("xpath", ntp_msg, data, flag)
#清空標識狀態
flag = False
except Exception as e:
print ("check ntp fail:") + str(e)
self.log.log_end("checkNtp")
u'''更新時間'''
def update_ntp_003(self):
#日誌開始記錄
self.log.log_start("updateNtp")
#獲取更新時間的數據
ntp_data = self.get_table_data("update_ntp")
row_count = len(ntp_data)-1
#點擊保存按鈕彈出框
ntp_msg = self.ntp_msg()
#無檢查點的測試項標識,如果為True說明通過
flag = False
for dataRow in range(len(ntp_data)):
data = ntp_data[dataRow]
try:
#如果不是第一行標題,則讀取數據
if dataRow != 0:
self.frameElem.from_frame_to_otherFrame("rigthFrame")
self.ntp.server_ip(data[2])
if dataRow != row_count:
self.ntp.set_cycle_date(data[3])
self.ntp.set_cycle_time(data[4])
else:
#自動與時間同步服務器
self.ntp.check_time_server()
self.ntp.save_button()
#點擊確定按鈕
self.ntp.click_msg_button()
#更新時間
self.ntp.updata_button()
#用戶退出
self.comm.user_quit()
#用戶登錄並切換至係統級角色
self.comm.login_and_switch_to_sys()
self.cmf.select_menu(u"係統配置", u"關聯服務")
#判斷測試項是否通過
self.check_without_pop_up(data)
except Exception as e:
print ("update ntp fail: ") + str(e)
self.log.log_end("updateNtp")
示例5: testTime
# 需要導入模塊: from common_suite_file import CommonSuiteData [as 別名]
# 或者: from common_suite_file.CommonSuiteData import user_quit [as 別名]
class testTime(object):
def __init__(self,driver):
self.driver = driver
self.log = log()
self.cmf = commonFun(driver)
self.frameElem = frameElement(driver)
self.testrole = testRole(driver)
self.command = CommandRule(driver)
self.comsuit = CommonSuiteData(driver)
self.timerule = TimeRule(driver)
self.getElem = getElement(driver)
self.loginElem = loginPage(self.driver)
u'''獲取測試數據
Parameters:
- sheetname:sheet名稱
return:表格數據
'''
def get_table_data(self, sheetname):
dataFile = dataFileName()
timerulPath = dataFile.get_timerule_test_data_url()
timerulData = dataFile.get_data(timerulPath, sheetname)
return timerulData
u'''添加時間規則'''
def add_time_rule_001(self):
#日誌開始記錄
self.log.log_start("add_time_rule")
#獲取添加時間規則測試數據
timerulData = self.get_table_data("add_time_rule")
#保存成功的彈出框
comrulMsg = self.testrole.popup()
#無檢查點的測試項標識,如果為True說明通過
flag = False
for dataRow in range(len(timerulData)):
data = timerulData[dataRow]
try:
#如果不是第一行標題,則讀取數據
if dataRow != 0:
self.command.click_add_button()
self.timerule.set_rulename((data[2]))
self.timerule.select_depart(data[3])
self.timerule.start_date(data[4])
self.timerule.date_of_termination(data[6], data[7])
self.timerule.set_status_type(data[8])
self.timerule.set_time(data[9], data[10], data[11])
self.timerule.set_descrip(data[12])
self.timerule.click_save_time()
self.frameElem.switch_to_content()
self.cmf.test_win_check_point("xpath", comrulMsg, data, flag)
self.command.click_back_command()
self.comsuit.switch_to_moudle(u'運維管理', u'用戶')
self.timerule.edit_user_time_rule(data[13], data[14])
if dataRow != 5:
self.comsuit.switch_to_moudle(u'運維管理', u'規則定義')
self.command.click_left_rule(1)
except Exception as e:
print ("add_time_rule fail:" + str(e))
self.comsuit.user_quit()
self.log.log_end("add_time_rule")
u'''添加時間規則結果'''
def add_time_rule_result_002(self):
#日誌開始記錄
self.log.log_start("add_time_rule_result")
#獲取添加時間規則測試數據
timerulData = self.get_table_data("add_time_rule")
#保存成功的彈出框
comrulMsg = self.testrole.popup()
#無檢查點的測試項標識,如果為True說明通過
flag = False
for dataRow in range(len(timerulData)):
data = timerulData[dataRow]
try:
#如果不是第一行標題,則讀取數據
if dataRow != 0:
list = [data[15], data[16], data[17], data[18], data[19]]
self.loginElem.login(list)
self.frameElem.from_frame_to_otherFrame("topFrame")
if self.getElem.is_element_exsit('id', "logout"):
self.comsuit.user_quit()
else:
self.cmf.click_login_msg_button()
flag = True
self.cmf.test_win_check_point("xpath", comrulMsg, list, flag)
except Exception as e:
print ("add_time_rule_result fail:" + str(e))
self.comsuit.login_and_switch_to_dep()
self.comsuit.switch_to_moudle(u'運維管理', u'規則定義')
self.command.click_left_rule(1)
self.log.log_end("add_time_rule_result")
u'''編輯時間規則'''
def mod_time_rule_003(self):
#日誌開始記錄
#.........這裏部分代碼省略.........