本文整理汇总了Python中common_suite_file.CommonSuiteData.authori_module_prefix_condition方法的典型用法代码示例。如果您正苦于以下问题:Python CommonSuiteData.authori_module_prefix_condition方法的具体用法?Python CommonSuiteData.authori_module_prefix_condition怎么用?Python CommonSuiteData.authori_module_prefix_condition使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类common_suite_file.CommonSuiteData
的用法示例。
在下文中一共展示了CommonSuiteData.authori_module_prefix_condition方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: testAuthSuite
# 需要导入模块: from common_suite_file import CommonSuiteData [as 别名]
# 或者: from common_suite_file.CommonSuiteData import authori_module_prefix_condition [as 别名]
class testAuthSuite(unittest.TestCase):
def setUp(self):
#定义驱动
self.browser = setDriver().set_driver()
self.commonSuite = CommonSuiteData(self.browser)
self.authCase = testAuthorization(self.browser)
# self.commonSuite.login_and_switch_to_dep()
# self.commonSuite.switch_to_moudle(u"运维管理", u"授权")
self.commonSuite.authori_module_prefix_condition()
def test_authori(self):
#添加用户和资源类型的授权
self.authCase.add_user_and_res_auth_001()
#添加用户和资源组类型的授权
self.authCase.add_user_and_res_group_auth_002()
#添加用户和资源账号类型的授权
self.authCase.add_user_and_res_account_auth_003()
#添加用户组和资源类型的授权
self.authCase.add_user_group_and_res_auth_004()
#添加用户组和资源组类型的授权
self.authCase.add_user_group_and_res_group_auth_005()
#添加用户组和资源账号类型的授权
self.authCase.add_user_group_and_res_account_auth_006()
#修改授权名称
self.authCase.edit_auth_name_007()
#授权校验
self.authCase.auth_checkout_008()
#授权检索
self.authCase.auth_query_009()
#添加访问审批
# self.authCase.Opt_access_approvel_011()
#双人授权
# self.authCase.add_double_approvel_012()
#删除授权
self.authCase.auth_del_010()
def tearDown(self):
self.commonSuite.authori_module_post_condition()
initDriver().close_driver(self.browser)