Sha256: c823f94e362ae46ff2419841f998d9e0fc7f1857c906cf7501c25ee5591e8039

Contents?: true

Size: 721 Bytes

Versions: 4

Compression:

Stored size: 721 Bytes

Contents

When /^fill valid fields for a new user named "([^"]*)"$/ do |username|
  fill_in "Username", :with=>username
  fill_in "Email", :with=>"#{username}@example.com"
  fill_in "First Name", :with=>"Mr."
  fill_in "Last Name", :with=>"Blank"
  fill_in "Password", :with=>"abc123"
  fill_in "Confirm Password", :with=>"abc123"
  click_on "Save"
end
Given /^the following content editor exists:$/ do |table|
    table.hashes.each do |row|
      row['login'] = row.delete('username')
      Factory(:content_editor, row)
    end
end
When /^I login as:$/ do |table|
  user = table.hashes.first
  visit '/cms/login'
  fill_in 'login', :with => user['login']
  fill_in 'password', :with => user['password']
  click_button 'LOGIN'
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
browsercms-3.4.2 features/step_definitions/manage_user_steps.rb
browsercms-3.4.2.rc1 features/step_definitions/manage_user_steps.rb
browsercms-3.4.1 features/step_definitions/manage_user_steps.rb
browsercms-3.4.0 features/step_definitions/manage_user_steps.rb