Sha256: 90389060ce898d2d61214c830d3ab70a9a296e375b1de6225e81e0e44a1ee73b
Contents?: true
Size: 896 Bytes
Versions: 102
Compression:
Stored size: 896 Bytes
Contents
module OpsManagerUiDrivers module Version16 module BoshProductSections class AvailabilityZones def initialize(browser:) @browser = browser @bosh_product_form_section = BoshProductFormSection.new(browser, 'availability_zones[availability_zones][]') end def add_single_az(iaas_identifier) @bosh_product_form_section.open_form('availability_zones') @bosh_product_form_section.set_fields('iaas_identifier' => iaas_identifier) @bosh_product_form_section.save_form end def add_az(fields) @bosh_product_form_section.open_form('availability_zones') browser.click_on 'Add' @bosh_product_form_section.set_fields(fields) @bosh_product_form_section.save_form end private attr_reader :browser end end end end
Version data entries
102 entries across 102 versions & 1 rubygems