diff options
| author | Tim Graham <timograham@gmail.com> | 2014-07-24 08:25:15 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2014-07-24 08:25:15 -0400 |
| commit | 9b1515906eb28819465276bfa55c6b42c858797d (patch) | |
| tree | be71d77be3bce86b45b89316d7f1bb990098e88b /tests/admin_widgets | |
| parent | 8568e7cfa4fb87cd0a9ead1b3fbb7a39d19e98b9 (diff) | |
Removed usage of deprecated switch_to_*() selenium methods.
Diffstat (limited to 'tests/admin_widgets')
| -rw-r--r-- | tests/admin_widgets/tests.py | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/tests/admin_widgets/tests.py b/tests/admin_widgets/tests.py index a004121414..79d7cbd9c8 100644 --- a/tests/admin_widgets/tests.py +++ b/tests/admin_widgets/tests.py @@ -985,26 +985,26 @@ class AdminRawIdWidgetSeleniumFirefoxTests(AdminSeleniumWebDriverTestCase): # Open the popup window and click on a band self.selenium.find_element_by_id('lookup_id_main_band').click() - self.selenium.switch_to_window('id_main_band') + self.selenium.switch_to.window('id_main_band') self.wait_page_loaded() link = self.selenium.find_element_by_link_text('Bogey Blues') self.assertTrue('/band/42/' in link.get_attribute('href')) link.click() # The field now contains the selected band's id - self.selenium.switch_to_window(main_window) + self.selenium.switch_to.window(main_window) self.wait_for_value('#id_main_band', '42') # Reopen the popup window and click on another band self.selenium.find_element_by_id('lookup_id_main_band').click() - self.selenium.switch_to_window('id_main_band') + self.selenium.switch_to.window('id_main_band') self.wait_page_loaded() link = self.selenium.find_element_by_link_text('Green Potatoes') self.assertTrue('/band/98/' in link.get_attribute('href')) link.click() # The field now contains the other selected band's id - self.selenium.switch_to_window(main_window) + self.selenium.switch_to.window(main_window) self.wait_for_value('#id_main_band', '98') def test_many_to_many(self): @@ -1020,26 +1020,26 @@ class AdminRawIdWidgetSeleniumFirefoxTests(AdminSeleniumWebDriverTestCase): # Open the popup window and click on a band self.selenium.find_element_by_id('lookup_id_supporting_bands').click() - self.selenium.switch_to_window('id_supporting_bands') + self.selenium.switch_to.window('id_supporting_bands') self.wait_page_loaded() link = self.selenium.find_element_by_link_text('Bogey Blues') self.assertTrue('/band/42/' in link.get_attribute('href')) link.click() # The field now contains the selected band's id - self.selenium.switch_to_window(main_window) + self.selenium.switch_to.window(main_window) self.wait_for_value('#id_supporting_bands', '42') # Reopen the popup window and click on another band self.selenium.find_element_by_id('lookup_id_supporting_bands').click() - self.selenium.switch_to_window('id_supporting_bands') + self.selenium.switch_to.window('id_supporting_bands') self.wait_page_loaded() link = self.selenium.find_element_by_link_text('Green Potatoes') self.assertTrue('/band/98/' in link.get_attribute('href')) link.click() # The field now contains the two selected bands' ids - self.selenium.switch_to_window(main_window) + self.selenium.switch_to.window(main_window) self.wait_for_value('#id_supporting_bands', '42,98') @@ -1067,7 +1067,7 @@ class RelatedFieldWidgetSeleniumFirefoxTests(AdminSeleniumWebDriverTestCase): main_window = self.selenium.current_window_handle # Click the Add User button to add new self.selenium.find_element_by_id('add_id_user').click() - self.selenium.switch_to_window('id_user') + self.selenium.switch_to.window('id_user') self.wait_page_loaded() password_field = self.selenium.find_element_by_id('id_password') password_field.send_keys('password') @@ -1078,7 +1078,7 @@ class RelatedFieldWidgetSeleniumFirefoxTests(AdminSeleniumWebDriverTestCase): save_button_css_selector = '.submit-row > input[type=submit]' self.selenium.find_element_by_css_selector(save_button_css_selector).click() - self.selenium.switch_to_window(main_window) + self.selenium.switch_to.window(main_window) # The field now contains the new user self.wait_for('#id_user option[value="newuser"]') |
