Class: FillIN::ComplexInput
- Inherits:
-
Object
- Object
- FillIN::ComplexInput
- Includes:
- Pickles
- Defined in:
- lib/cucumber/pickles/steps/fill_in/complex_input.rb
Constant Summary
Constants included from Pickles
Instance Method Summary collapse
- #call ⇒ Object
-
#initialize(label, value, within) ⇒ ComplexInput
constructor
A new instance of ComplexInput.
Methods included from Pickles
Methods included from Helpers::Main
#attach_file, #blur, #parent_node, #select_input, #trigger
Methods included from Waiter
page, pending_ajax_requests_num, wait, wait_for_ajax
Methods included from NodeFinders
#_rescued_find, #detect_node, #find_input, #find_node
Constructor Details
#initialize(label, value, within) ⇒ ComplexInput
Returns a new instance of ComplexInput.
5 6 7 8 9 |
# File 'lib/cucumber/pickles/steps/fill_in/complex_input.rb', line 5 def initialize(label, value, within) @label = label @value = value @within = within || Capybara.current_session end |