Sha256: 42a372650ef6ead21e1bf8b1392a9fe6d7dc7cf2db39d9d18ad6e7b8698826d8
Contents?: true
Size: 551 Bytes
Versions: 43
Compression:
Stored size: 551 Bytes
Contents
module OpsManagerUiDrivers module Version16 class AvailableProducts def initialize(browser:) @browser = browser end def add_product_to_install(product_name) browser.visit '/' browser.click_on "add-#{product_name}" browser.find("#show-#{product_name}-configure-action", wait: 10) 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
43 entries across 43 versions & 1 rubygems