mobile dash layout provided; other styling inconsistencies corrected across views, scss & _applets.html template partial
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
Disco DeDisco
2026-03-07 00:05:32 -05:00
parent b5d6912b26
commit 13940ca834
7 changed files with 52 additions and 17 deletions

View File

@@ -3,6 +3,7 @@ from selenium.webdriver.common.by import By
from .base import FunctionalTest
from .list_page import ListPage
from .my_lists_page import MyListsPage
from apps.lyric.models import User
class MyListsTest(FunctionalTest):
@@ -30,11 +31,10 @@ class MyListsTest(FunctionalTest):
list_page.add_list_item("Ribbon of death")
second_list_url = self.browser.current_url
self.browser.find_element(By.LINK_TEXT, "My lists").click()
MyListsPage(self).go_to_my_lists_page("disco@test.io")
self.wait_for(
lambda: self.browser.find_element(By.LINK_TEXT, "Ribbon of death")
)
MyListsPage(self).go_to_my_lists_page("disco@test.io")
self.browser.find_element(By.CSS_SELECTOR, "#id_logout").click()
self.wait_for(