summaryrefslogtreecommitdiff
path: root/fake-service/features/step_definitions/mail_list.rb
diff options
context:
space:
mode:
Diffstat (limited to 'fake-service/features/step_definitions/mail_list.rb')
-rw-r--r--fake-service/features/step_definitions/mail_list.rb55
1 files changed, 0 insertions, 55 deletions
diff --git a/fake-service/features/step_definitions/mail_list.rb b/fake-service/features/step_definitions/mail_list.rb
deleted file mode 100644
index d41a62a0..00000000
--- a/fake-service/features/step_definitions/mail_list.rb
+++ /dev/null
@@ -1,55 +0,0 @@
-When(/^I open the first mail in the '(.*)'$/) do |tag|
- page.execute_script("window.scrollBy(0, -200)")
- step "I select the tag '#{tag}'"
- step 'I open the first mail in the mail list'
-end
-
-When(/^I open the first mail in the mail list$/) do
- within('#mail-list') do
- mail_link = first('a')
- @current_mail_id = mail_link.native.attribute('href').scan(/\/(\d+)$/).flatten.first
- begin
- mail_link.click
- rescue # in Chrome, the 'a' in mail_list is not clickable because it's hidden inside the 'li'
- mail_link_parent_li = mail_link.find(:xpath, '../..')
- mail_link_parent_li.click
- end
- end
-end
-
-When(/I see that mail under the '(.*)' tag/) do |tag|
- step "I select the tag '#{tag}'"
- check_current_mail_is_visible
-end
-
-And(/^I open the mail I previously tagged$/) do
- open_current_mail
-end
-
-When(/^I open that mail$/) do
- open_current_mail
-end
-
-Then(/^I see the mail I sent$/) do
- check_current_mail_is_visible
-end
-
-Then(/^the deleted mail is there$/) do
- check_current_mail_is_visible
-end
-
-def open_current_mail
- within('#mail-list') do
- begin
- first("#mail-#{@current_mail_id} a").click
- rescue # in Chrome, the 'a' in mail_list is not clickable because it's hidden inside the 'li'
- first("#mail-#{@current_mail_id}").click
- end
- end
-end
-
-def check_current_mail_is_visible
- within('#mail-list') do
- have_selector?("#mail-#{@current_mail_id}").should be_true
- end
-end