本文整理汇总了Python中guiops.guiops.GuiOps.associate_eip_from_instance_detail_page方法的典型用法代码示例。如果您正苦于以下问题:Python GuiOps.associate_eip_from_instance_detail_page方法的具体用法?Python GuiOps.associate_eip_from_instance_detail_page怎么用?Python GuiOps.associate_eip_from_instance_detail_page使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类guiops.guiops.GuiOps
的用法示例。
在下文中一共展示了GuiOps.associate_eip_from_instance_detail_page方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: ElasticIPsOperationsSequence
# 需要导入模块: from guiops.guiops import GuiOps [as 别名]
# 或者: from guiops.guiops.GuiOps import associate_eip_from_instance_detail_page [as 别名]
class ElasticIPsOperationsSequence(GuiOps):
def __init__(self):
parser = Option_parser()
self.console_url = parser.parse_options()['console_url']
self.webdriver_url = parser.parse_options()['web_driver']
self.account = parser.parse_options()['account']
self.user = parser.parse_options()['user_name']
self.password = parser.parse_options()['password']
self.sauce = parser.parse_options()['sauce']
self.browser = parser.parse_options()['browser']
self.version = parser.parse_options()['version']
self.platform = parser.parse_options()['platform']
self.tester = GuiOps(console_url=self.console_url, webdriver_url=self.webdriver_url,
sauce=self.sauce, browser=self.browser, version=self.version, platform=self.platform)
self.tester.zoom_out()
def elastic_ip_ops_test(self):
self.tester.login(self.account, self.user, self.password)
self.elastic_ip_single_allocate_release_test_from_lp()
self.elastic_ips_multi_allocate_release_test_from_dashboard()
self.elastic_ips_associate_disassociate_ip()
self.tester.logout()
self.tester.exit_browser()
def elastic_ip_single_allocate_release_test_from_lp(self):
elastic_ips = self.tester.allocate_eip_from_lp(1)
self.tester.release_eip_from_eip_lp(elastic_ips[0])
def elastic_ips_multi_allocate_release_test_from_dashboard(self):
elastic_ips = self.tester.allocate_eip_from_dashboard(2)
released_ips = self.tester.release_eips_from_eip_lp(elastic_ips)
assert elastic_ips == released_ips
def elastic_ips_associate_disassociate_ip(self):
elastic_ip = self.tester.allocate_eip_from_dashboard(1)
elastic_ip = str(elastic_ip[0])
launch_instance = self.tester.launch_instance_from_dashboard(instance_type="m1.medium")
instance_id = launch_instance['instance_id']
self.tester.associate_eip_from_eip_lp(elastic_ip, instance_id)
self.tester.disassociate_eip_from_eip_lp(elastic_ip, instance_id)
self.tester.associate_eip_from_eip_detail_page(elastic_ip, instance_id)
self.tester.disassociate_eip_from_eip_detail_page(elastic_ip, instance_id)
self.tester.associate_eip_from_instances_lp(elastic_ip, instance_id)
self.tester.disassociate_eip_from_instances_lp(elastic_ip, instance_id)
self.tester.associate_eip_from_instance_detail_page(elastic_ip, instance_id)
self.tester.disassociate_eip_from_instance_detail_page(elastic_ip, instance_id)
self.tester.terminate_instance_from_view_page(instance_id)
self.tester.release_eip_from_eip_lp(elastic_ip)