1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
|
#
# Copyright (c) 2014 ThoughtWorks, Inc.
#
# Pixelated is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# Pixelated is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with Pixelated. If not, see <http://www.gnu.org/licenses/>.
from selenium.webdriver.common.keys import Keys
from common import *
@then('I see that the subject reads \'{subject}\'')
def impl(context, subject):
e = find_element_by_css_selector(context, '#mail-view .subject')
assert e.text == subject
@then('I see that the body reads \'{expected_body}\'')
def impl(context, expected_body):
e = find_element_by_css_selector(context, '#mail-view .bodyArea')
assert e.text == expected_body
@then('that email has the \'{tag}\' tag')
def impl(context, tag):
wait_until_element_is_visible_by_locator(context, (By.CSS_SELECTOR, '#mail-view .tagsArea .tag'))
elements = find_elements_by_css_selector(context, '#mail-view .tagsArea .tag')
tags = [e.text for e in elements]
assert tag in tags
@when('I add the tag \'{tag}\' to that mail')
def impl(context, tag):
b = wait_until_element_is_visible_by_locator(context, (By.ID, 'new-tag-button'))
b.click()
e = wait_until_element_is_visible_by_locator(context, (By.ID, 'new-tag-input'))
e.send_keys(tag)
e.send_keys(Keys.ENTER)
wait_until_element_is_visible_by_locator(context, (By.CSS_SELECTOR, 'li[data-tag=%s]' % tag))
@when('I reply to it')
def impl(context):
click_button(context, 'Reply')
context.reply_subject = reply_subject(context)
click_button(context, 'Send')
# NOT BEING USED
@then('I see if the mail has html content')
def impl(context):
e = find_element_by_css_selector(context, '#mail-view .bodyArea')
h2 = e.find_element_by_css_selector("h2[style*='color: #3f4944']")
assert 'cborim' in h2.text
@when('I try to delete the first mail')
def impl(context):
context.execute_steps(u"When I open the first mail in the mail list")
find_element_by_css_selector(context, '#mail-view #view-more-actions').click()
context.browser.execute_script("$('#delete-button-top').click();")
e = find_element_by_css_selector(context, '#user-alerts')
assert 'Your message was moved to trash!' == e.text
@when('I choose to forward this mail')
def impl(context):
wait_until_button_is_visible(context, 'Forward')
click_button(context, 'Forward')
@when('I forward this mail')
def impl(context):
context.execute_steps(u'When I save the draft') # FIXME: this won't be necessary after #89 is done
wait_until_button_is_visible(context, 'Send')
click_button(context, 'Send')
@when('I remove all tags')
def impl(context):
e = find_element_by_css_selector(context, '.tagsArea')
tags = e.find_elements_by_css_selector('.tag')
assert len(tags) > 0
for tag in tags:
tag.click()
@when('I choose to trash')
def impl(context):
context.browser.execute_script("$('button#view-more-actions').click()")
click_button(context, 'Delete this message', 'span')
@then('I see the mail has a cc and a bcc recipient')
def impl(context):
cc = find_element_by_css_selector(context, '.msg-header .cc')
bcc = find_element_by_css_selector(context, '.msg-header .bcc')
assert cc is not None
assert bcc is not None
|