2026-03-02 13:57:03 -05:00
|
|
|
from selenium.webdriver.common.by import By
|
|
|
|
|
|
|
|
|
|
from .base import FunctionalTest
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class SiteThemeTest(FunctionalTest):
|
2026-03-05 14:45:55 -05:00
|
|
|
def test_page_renders_with_earthman_palette(self):
|
2026-03-02 13:57:03 -05:00
|
|
|
self.browser.get(self.live_server_url)
|
|
|
|
|
body = self.browser.find_element(By.TAG_NAME, "body")
|
2026-03-05 14:45:55 -05:00
|
|
|
self.assertIn("palette-default", body.get_attribute("class"))
|