本文整理汇总了Python中common_suite_file.CommonSuiteData.pwdstr_module_prefix_condition方法的典型用法代码示例。如果您正苦于以下问题:Python CommonSuiteData.pwdstr_module_prefix_condition方法的具体用法?Python CommonSuiteData.pwdstr_module_prefix_condition怎么用?Python CommonSuiteData.pwdstr_module_prefix_condition使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类common_suite_file.CommonSuiteData
的用法示例。
在下文中一共展示了CommonSuiteData.pwdstr_module_prefix_condition方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: TestPwdSuite
# 需要导入模块: from common_suite_file import CommonSuiteData [as 别名]
# 或者: from common_suite_file.CommonSuiteData import pwdstr_module_prefix_condition [as 别名]
class TestPwdSuite(unittest.TestCase):
def setUp(self):
#定义驱动
self.browser = setDriver().set_driver()
self.commonSuite = CommonSuiteData(self.browser)
self.pwdstr = PasswordStr(self.browser)
self.initDriver = initDriver()
#前置条件
self.commonSuite.pwdstr_module_prefix_condition()
def test_pwdstr(self):
#添加密码策略
self.pwdstr.add_strategy_001()
#编辑密码策略
self.pwdstr.edit_strategy_002()
#密码策略校验
self.pwdstr.check_strategy_003()
#密码策略检索
self.pwdstr.search_strategy_004()
#删除单条密码策略
self.pwdstr.del_sing_policy_005()
#配置全局密码策略
self.pwdstr.session_association_007()
#与密码策略关联的用户
self.pwdstr.user_association_008()
#与密码策略关联的资源
self.pwdstr.resource_association_009()
#与密码策略关联的资源账号
self.pwdstr.resource_account_association_010()
#删除所有密码策略
self.pwdstr.del_all_policy_006()
def tearDown(self):
#后置条件
self.commonSuite.pwdstr_module_post_condition()
#关闭浏览器
self.initDriver.close_driver(self.browser)