Sha256: 062e100f2b8385bc8c6005f46ecc1efd0f7450ada3815dcf447fd1cf3e5ddb4f
Contents?: true
Size: 478 Bytes
Versions: 21
Compression:
Stored size: 478 Bytes
Contents
module OpsManagerUiDrivers module Version15 class AvailableProducts def initialize(browser:) @browser = browser end def add_product_to_install(product_name) browser.visit '/' browser.click_on "add-#{product_name}" end def product_added?(product_name) browser.visit '/' browser.all("#show-#{product_name}-configure-action").any? end private attr_reader :browser end end end
Version data entries
21 entries across 21 versions & 1 rubygems