Sha256: 220f7001a79e96dd1eae022361e464c65adbe9bbbb5b67c5304821c533ef72b7
Contents?: true
Size: 551 Bytes
Versions: 28
Compression:
Stored size: 551 Bytes
Contents
module OpsManagerUiDrivers module Version17 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
28 entries across 28 versions & 1 rubygems