本文整理汇总了Python中common_suite_file.CommonSuiteData.use_auth_module_prefix_condition方法的典型用法代码示例。如果您正苦于以下问题:Python CommonSuiteData.use_auth_module_prefix_condition方法的具体用法?Python CommonSuiteData.use_auth_module_prefix_condition怎么用?Python CommonSuiteData.use_auth_module_prefix_condition使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类common_suite_file.CommonSuiteData
的用法示例。
在下文中一共展示了CommonSuiteData.use_auth_module_prefix_condition方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: UseAuthSuite
# 需要导入模块: from common_suite_file import CommonSuiteData [as 别名]
# 或者: from common_suite_file.CommonSuiteData import use_auth_module_prefix_condition [as 别名]
class UseAuthSuite(unittest.TestCase):
def setUp(self):
#定义驱动
self.browser = setDriver().set_driver()
self.commonSuite = CommonSuiteData(self.browser)
self.useAuthCase = UseAuthorization(self.browser)
self.initDriver = initDriver()
#前置条件
self.commonSuite.use_auth_module_prefix_condition()
def test_use_auth(self):
#填写产品信息
self.useAuthCase.add_product_information_001()
#上传logo
self.useAuthCase.upload_logo_upgrade_002()
#产品信息校验
self.useAuthCase.check_product_information_003()
#logo包校验
self.useAuthCase.check_logo_upgrade_004()
#上传授权码
self.useAuthCase.add_product_information_005()
#上传授权码校验
self.useAuthCase.check_updata_auth_006()
def tearDown(self):
self.commonSuite.use_auth_module_post_condition()
self.initDriver.close_driver(self.browser)
示例2: range
# 需要导入模块: from common_suite_file import CommonSuiteData [as 别名]
# 或者: from common_suite_file.CommonSuiteData import use_auth_module_prefix_condition [as 别名]
for dataRow in range(len(use_data)):
data = use_data[dataRow]
try:
#如果不是第一行标题,则读取数据
if dataRow != 0:
self.frameElem.from_frame_to_otherFrame("mainFrame")
self.useauth.add_authcode_name(data[2])
self.useauth.click_updateAuth_button()
self.frameElem.switch_to_content()
self.cmf.test_win_check_point("xpath", saveMsg, data, flag)
except Exception as e:
print ("check updat auth error: ") + str(e)
self.log.log_end("checkUpdatAuth")
if __name__ == "__main__":
browser = setDriver().set_local_driver()
commonSuite = CommonSuiteData(browser)
useAuth = UseAuthorization(browser)
commonSuite.use_auth_module_prefix_condition()
#填写产品信息
useAuth.add_product_information_001()
#上传logo
useAuth.upload_logo_upgrade_002()
#产品信息校验
useAuth.check_product_information_003()
#logo包校验
useAuth.check_logo_upgrade_004()
#上传授权码
useAuth.add_product_information_005()
#上传授权码校验
useAuth.check_updata_auth_006()