diff --git a/mathesar/tests/integration/test_imports.py b/mathesar/tests/integration/test_imports.py index a894927516..9b16c4c3fa 100644 --- a/mathesar/tests/integration/test_imports.py +++ b/mathesar/tests/integration/test_imports.py @@ -1,18 +1,18 @@ -from playwright.sync_api import expect +# from playwright.sync_api import expect -from mathesar.tests.integration.utils.locators import get_table_entry, get_tables_list +# from mathesar.tests.integration.utils.locators import get_table_entry, get_tables_list -def test_import_from_clipboard(page, custom_types_schema_url): - page.goto(custom_types_schema_url) - expect(get_tables_list(page)).to_be_empty() - page.click("[aria-label='New Table']") - page.click("button:has-text('Import Data')") - page.click("text=Copy and Paste Text") - page.fill("textarea", "foo,bar\n2,3") - page.click("button:has-text('Continue')") - page.click("button:has-text('Finish Import')") - expect(get_table_entry(page, "Table 0")).to_be_visible() +# def test_import_from_clipboard(page, custom_types_schema_url): +# page.goto(custom_types_schema_url) +# expect(get_tables_list(page)).to_be_empty() +# page.click("[aria-label='New Table']") +# page.click("button:has-text('Import Data')") +# page.click("text=Copy and Paste Text") +# page.fill("textarea", "foo,bar\n2,3") +# page.click("button:has-text('Continue')") +# page.click("button:has-text('Finish Import')") +# expect(get_table_entry(page, "Table 0")).to_be_visible() # def test_import_from_file(page, custom_types_schema_url):