diff options
Diffstat (limited to 'tests/playwright/test_basic.py')
-rw-r--r-- | tests/playwright/test_basic.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/playwright/test_basic.py b/tests/playwright/test_basic.py index 66ec326..231962e 100644 --- a/tests/playwright/test_basic.py +++ b/tests/playwright/test_basic.py @@ -53,7 +53,7 @@ def test_upload(page: Page, playwright_helper, tmp_path, dbaccess): # We now fill in most of the data page.get_by_label("Title", exact=True).fill("An awesome track!") page.get_by_label("Date").type("07302022") - page.get_by_label("Date").press("Tab") + #page.get_by_label("Date").press("Tab") page.get_by_label("Date").type("12:41") page.get_by_label("Visibility").select_option(label="Public") page.get_by_label("Tags").fill("Tolle Tour") @@ -84,7 +84,6 @@ def test_edit(page: Page, playwright_helper, dbaccess): # We now fill in most of the data page.get_by_label("Title", exact=True).fill("Not so awesome anymore!") page.get_by_label("Date").type("09232019") - page.get_by_label("Date").press("Tab") page.get_by_label("Date").type("15:28") page.get_by_label("Visibility").select_option(label="Public") page.get_by_label("Tags").fill("Shitty Tour") |