当前位置: 首页>>代码示例>>Python>>正文


Python CommonSuiteData.login_and_switch_to_dep方法代码示例

本文整理汇总了Python中common_suite_file.CommonSuiteData.login_and_switch_to_dep方法的典型用法代码示例。如果您正苦于以下问题:Python CommonSuiteData.login_and_switch_to_dep方法的具体用法?Python CommonSuiteData.login_and_switch_to_dep怎么用?Python CommonSuiteData.login_and_switch_to_dep使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在common_suite_file.CommonSuiteData的用法示例。


在下文中一共展示了CommonSuiteData.login_and_switch_to_dep方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: testTime

# 需要导入模块: from common_suite_file import CommonSuiteData [as 别名]
# 或者: from common_suite_file.CommonSuiteData import login_and_switch_to_dep [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):
		#日志开始记录
#.........这里部分代码省略.........
开发者ID:isomper,项目名称:testIsomp,代码行数:103,代码来源:test_time_rule.py


注:本文中的common_suite_file.CommonSuiteData.login_and_switch_to_dep方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。