3 Copyright 2013 Emily O'Leary
5 Licensed under the Apache License, Version 2.0 (the "License");
6 you may not use this file except in compliance with the License.
7 You may obtain a copy of the License at
9 http://www.apache.org/licenses/LICENSE-2.0
11 Unless required by applicable law or agreed to in writing, software
12 distributed under the License is distributed on an "AS IS" BASIS,
13 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 See the License for the specific language governing permissions and
15 limitations under the License.
17 from util import login
18 from selenium import webdriver
19 from selenium.webdriver.common.by import By
20 from selenium.webdriver.support.ui import Select
21 from selenium.common.exceptions import NoSuchElementException
22 import unittest, time, re
24 class ChangeAccountSettings(unittest.TestCase):
26 self.driver = webdriver.Firefox()
27 self.driver.implicitly_wait(30)
28 self.base_url = "http://127.0.0.1:6543"
29 self.verificationErrors = []
30 self.accept_next_alert = True
32 def test_change_account_settings(self):
34 driver.get(self.base_url + "/")
35 tLogin = login.Login()
36 data = {"username" : "editorgoblin", "password" : "Fixyourgrammarplease"}
37 tLogin.log_in(self, data)
38 try: self.assertTrue(self.is_element_present(By.CSS_SELECTOR, "div.button_action.header_dropdown_down"))
39 except AssertionError as e: self.verificationErrors.append(str(e))
40 driver.find_element_by_css_selector("div.button_action.header_dropdown_down").click()
41 self.assertTrue(self.is_element_present(By.LINK_TEXT, "Change account settings"))
42 driver.find_element_by_link_text("Change account settings").click()
43 try: self.assertTrue(self.is_element_present(By.CSS_SELECTOR, "div.boolean > label"))
44 except AssertionError as e: self.verificationErrors.append(str(e))
45 self.assertTrue(self.is_element_present(By.ID, "license_preference"))
46 select = Select(driver.find_element_by_id("license"))
47 select.select_by_visible_text("Public Domain")
48 driver.find_element_by_id("wants_comment_notification").click()
49 driver.find_element_by_css_selector("input.button_form").click()
50 try: self.assertEqual("Account settings saved", driver.find_element_by_css_selector("li.message_success").text)
51 except AssertionError as e: self.verificationErrors.append(str(e))
52 try: self.assertTrue(self.is_element_present(By.CSS_SELECTOR, "div.button_action.header_dropdown_down"))
53 except AssertionError as e: self.verificationErrors.append(str(e))
54 driver.find_element_by_css_selector("div.button_action.header_dropdown_down").click()
55 self.assertTrue(self.is_element_present(By.LINK_TEXT, "Change account settings"))
56 driver.find_element_by_link_text("Change account settings").click()
57 try: self.assertEqual("off", driver.find_element_by_id("wants_comment_notification").get_attribute("value"))
58 except AssertionError as e: self.verificationErrors.append(str(e))
60 def is_element_present(self, how, what):
61 try: self.driver.find_element(by=how, value=what)
62 except NoSuchElementException, e: return False
65 def is_alert_present(self):
66 try: self.driver.switch_to_alert()
67 except NoAlertPresentException, e: return False
70 def close_alert_and_get_its_text(self):
72 alert = self.driver.switch_to_alert()
73 alert_text = alert.text
74 if self.accept_next_alert:
79 finally: self.accept_next_alert = True
83 self.assertEqual([], self.verificationErrors)
85 if __name__ == "__main__":