scinote-web/features/step_definitions/profile_steps.rb

29 lines
841 B
Ruby
Raw Normal View History

2017-10-11 15:51:20 +08:00
Then(/^I click on Avatar$/) do
find('img.avatar').click
end
Given(/^I'm on the profile page$/) do
visit '/settings/account/profile'
2017-10-11 15:51:20 +08:00
end
Then(/^I click on Browse button$/) do
find('input#user_avatar').click
2017-10-10 15:17:55 +08:00
end
Then(/^I change "([^"]*)" with "([^"]*)" email$/) do |prev_email, new_email|
find(:xpath, "//input[@value='#{prev_email}']").set(new_email)
end
Then(/^I fill in "([^"]*)" in Current password field$/) do |password|
find(:xpath, '//input[@id="settings_page.current_password"]').set(password)
end
Then(/^I fill in "([^"]*)" in New password field$/) do |password|
find(:xpath, '//input[@id="settings_page.new_password"]').set(password)
end
Then(/^I fill in "([^"]*)" in New password confirmation field$/) do |password|
find(:xpath,
'//input[@id="settings_page.new_password_confirmation"]').set(password)
end