This is an automated email from the ASF dual-hosted git repository.
jli pushed a change to branch feat-additional-dataset-playwright-tests
in repository https://gitbox.apache.org/repos/asf/superset.git
from d0361cb881 test(playwright): convert and create new dataset list
playwright tests (#36196)
new 7adc5de818 test(playwright): add export single dataset E2E test
new d90ec33556 test(playwright): add bulk export datasets E2E test
new 1f8f0fe99d test(playwright): add create dataset wizard E2E test
new 92e9764a57 test(playwright): add edit dataset E2E test
The 4 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.../playwright/components/core/Checkbox.ts | 80 ++++++++++
.../playwright/components/core/Select.ts | 112 ++++++++++++++
.../playwright/components/core/Tabs.ts | 75 ++++++++++
.../playwright/components/core/Textarea.ts | 86 +++++++++++
.../playwright/components/core/index.ts | 4 +
.../components/modals/ConfirmDialog.ts} | 32 ++--
.../components/modals/EditDatasetModal.ts | 71 +++++++++
.../playwright/pages/CreateDatasetPage.ts | 140 ++++++++++++++++++
.../playwright/pages/DatasetListPage.ts | 81 +++++++++-
.../experimental/dataset/dataset-list.spec.ts | 163 ++++++++++++++++++++-
10 files changed, 831 insertions(+), 13 deletions(-)
create mode 100644 superset-frontend/playwright/components/core/Checkbox.ts
create mode 100644 superset-frontend/playwright/components/core/Select.ts
create mode 100644 superset-frontend/playwright/components/core/Tabs.ts
create mode 100644 superset-frontend/playwright/components/core/Textarea.ts
copy superset-frontend/{src/setup/setupCodeOverrides.ts =>
playwright/components/modals/ConfirmDialog.ts} (56%)
create mode 100644
superset-frontend/playwright/components/modals/EditDatasetModal.ts
create mode 100644 superset-frontend/playwright/pages/CreateDatasetPage.ts