summaryrefslogtreecommitdiff
path: root/tests/admin_views
diff options
context:
space:
mode:
authorSarah Boyce <42296566+sarahboyce@users.noreply.github.com>2024-04-03 08:41:38 +0200
committerSarah Boyce <42296566+sarahboyce@users.noreply.github.com>2024-04-03 09:29:01 +0200
commit89403dbedd2797324ce3097e4b4a4853d0e6daa9 (patch)
treeb636e82719f6bbb36ec87ef369efd9af81f7caf1 /tests/admin_views
parent8665cf03d79c4b6222514c5943ccf3863a19cf08 (diff)
Fixed SeleniumTests.test_related_object_update_with_camel_casing() assert.
A selenium web element was compared to a string rather than its innerHTML.
Diffstat (limited to 'tests/admin_views')
-rw-r--r--tests/admin_views/test_related_object_lookups.py9
1 files changed, 4 insertions, 5 deletions
diff --git a/tests/admin_views/test_related_object_lookups.py b/tests/admin_views/test_related_object_lookups.py
index 955bebea9e..c10a5568d5 100644
--- a/tests/admin_views/test_related_object_lookups.py
+++ b/tests/admin_views/test_related_object_lookups.py
@@ -80,9 +80,6 @@ class SeleniumTests(AdminSeleniumTestCase):
def test_related_object_update_with_camel_casing(self):
from selenium.webdriver.common.by import By
- def _get_HTML_inside_element_by_id(id_):
- return self.selenium.find_element(By.ID, id_).get_attribute("innerHTML")
-
add_url = reverse("admin:admin_views_camelcaserelatedmodel_add")
self.selenium.get(self.live_server_url + add_url)
interesting_name = "A test name"
@@ -105,15 +102,17 @@ class SeleniumTests(AdminSeleniumTestCase):
# Check that both the "Available" m2m box and the "Fk" dropdown now
# include the newly added CamelCaseModel instance.
+ fk_dropdown = self.selenium.find_element(By.ID, "id_fk")
self.assertHTMLEqual(
- self.selenium.find_element(By.ID, "id_fk"),
+ fk_dropdown.get_attribute("innerHTML"),
f"""
<option value="" selected="">---------</option>
<option value="1" selected>{interesting_name}</option>
""",
)
+ m2m_box = self.selenium.find_element(By.ID, "id_m2m_from")
self.assertHTMLEqual(
- self.selenium.find_element(By.ID, "id_m2m_from"),
+ m2m_box.get_attribute("innerHTML"),
f"""
<option value="1">{interesting_name}</option>
""",