created functional_tests.my_lists_page to contain helpers for viewing shared lists; refactored several other FTs to passing

This commit is contained in:
Disco DeDisco
2026-02-17 23:27:54 -05:00
parent e32c6bbfd6
commit a85e0597d7
4 changed files with 40 additions and 13 deletions

View File

@@ -30,7 +30,7 @@ class ListPage:
def get_share_box(self):
return self.test.browser.find_element(
By.CSS_SELECTOR,
'input[name="recipient]',
'input[name="recipient"]',
)
def get_shared_with_list(self):
@@ -47,3 +47,6 @@ class ListPage:
email, [item.text for item in self.get_shared_with_list()]
)
)
def get_list_owner(self):
return self.test.browser.find_element(By.ID, "id_list_owner").text