OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
openproject/spec/support/edit_fields/text_area_field.rb

45 lines
900 B

require_relative './edit_field'
class TextAreaField < EditField
def input_selector
'textarea'
end
def expect_save_button(enabled: true)
if enabled
expect(field_container).to have_no_selector("#{control_link}[disabled]")
else
expect(field_container).to have_selector("#{control_link}[disabled]")
end
end
def save!
submit_by_click
end
def submit_by_click
target = field_container.find(control_link)
scroll_to_element(target)
target.click
end
def submit_by_keyboard
input_element.native.send_keys :tab
end
def cancel_by_click
target = field_container.find(control_link(:cancel))
scroll_to_element(target)
target.click
end
def field_type
'textarea'
end
def control_link(action = :save)
raise 'Invalid link' unless %i[save cancel].include?(action)
".inplace-edit--control--#{action}"
end
end