diff --git a/src/frontend/e2e/01-create-new-project.spec.ts b/src/frontend/e2e/01-create-new-project.spec.ts index 184875f308..d3720df6da 100644 --- a/src/frontend/e2e/01-create-new-project.spec.ts +++ b/src/frontend/e2e/01-create-new-project.spec.ts @@ -8,10 +8,11 @@ test('create new project', async ({ browserName, page }) => { // (playwright.config.ts is configured to run all browsers by default) test.skip(browserName !== 'chromium', 'Test only for chromium!'); - // 1. Project Details Step await page.goto('/'); await page.getByRole('button', { name: '+ Create New Project' }).click(); await page.getByRole('button', { name: 'NEXT' }).click(); + + // 1. Project Details Step await expect(page.getByText('Project Name is Required.')).toBeVisible(); await expect(page.getByText('Short Description is Required.', { exact: true })).toBeVisible(); await expect(page.getByText('Description is Required.', { exact: true })).toBeVisible(); @@ -67,10 +68,10 @@ test('create new project', async ({ browserName, page }) => { await page.getByRole('button', { name: 'NEXT' }).click(); // 4. Map Features Step - const dataExtractRadio = await page.getByText('Use OSM map features'); + const dataExtractRadio = await page.getByText('Fetch data from OSM'); await dataExtractRadio.click(); await expect(dataExtractRadio).toBeChecked(); - await page.getByRole('button', { name: 'Generate Map Features' }).click(); + await page.getByRole('button', { name: 'Generate Map Data' }).click(); await page.getByRole('button', { name: 'NEXT' }).click(); // 5. Split Tasks Step diff --git a/src/frontend/src/components/ManageProject/EditTab/FormUpdateTab.tsx b/src/frontend/src/components/ManageProject/EditTab/FormUpdateTab.tsx index f60ce8a627..cf1bb79a67 100644 --- a/src/frontend/src/components/ManageProject/EditTab/FormUpdateTab.tsx +++ b/src/frontend/src/components/ManageProject/EditTab/FormUpdateTab.tsx @@ -47,8 +47,8 @@ const FormUpdateTab = ({ projectId }) => {
You may either choose to use OSM data, or upload your own data for the mapping project.
- The relevant map features that exist on OSM are imported based on the select map area.{' '}
+ The relevant map data that exist on OSM are imported based on the select map area.{' '}
- You can use these map features to use the 'select from map' functionality from ODK that allows you to select
- the feature to collect data for.
+ You can use these map data to use the 'select from map' functionality from ODK that allows you to
+ select the feature to collect data for.
{' '}
Additional datasets might be important if your survey consists of more than one feature to select. For
@@ -242,7 +242,7 @@ const DataExtract = ({
>