Class: Prof::OpsManager::WebAppInternals::Page::ClickField

Inherits:
FormField
  • Object
show all
Defined in:
lib/prof/ops_manager/web_app_internals/page/click_field.rb

Instance Method Summary collapse

Methods inherited from FormField

#set

Constructor Details

#initialize(name:, expected_state:) ⇒ ClickField

Returns a new instance of ClickField.



18
19
20
21
# File 'lib/prof/ops_manager/web_app_internals/page/click_field.rb', line 18

def initialize(name:, expected_state: )
  super(name: name, value: nil)
  @expected_state = expected_state
end