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/select_edit_field.rb

12 lines
248 B

require_relative './edit_field'
class SelectField < EditField
def expect_value(value)
input = context.find(input_selector + ' .ng-value-label')
expect(input.text).to eq(value)
end
def field_type
'create-autocompleter'
end
end