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
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
This commit is contained in:
@@ -1,5 +1,7 @@
|
||||
from selenium.webdriver.common.by import By
|
||||
|
||||
from apps.lyric.models import User
|
||||
|
||||
|
||||
class MyListsPage:
|
||||
def __init__(self, test):
|
||||
@@ -7,7 +9,10 @@ class MyListsPage:
|
||||
|
||||
def go_to_my_lists_page(self, email):
|
||||
self.test.browser.get(self.test.live_server_url)
|
||||
self.test.browser.find_element(By.LINK_TEXT, "My lists").click()
|
||||
user = User.objects.get(email=email)
|
||||
self.test.browser.get(
|
||||
self.test.live_server_url + f'/dashboard/users/{user.id}/'
|
||||
)
|
||||
self.test.wait_for(
|
||||
lambda: self.test.assertIn(
|
||||
email,
|
||||
|
||||
Reference in New Issue
Block a user