Playwright: implemented importUser
This commit is contained in:
18
test-playwright/10-check-usage-limits.spec.ts
Normal file
18
test-playwright/10-check-usage-limits.spec.ts
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
import { test, expect } from '@playwright/test';
|
||||||
|
import { importUser } from './testUtils';
|
||||||
|
|
||||||
|
test('Check usage limits', async ({ page }) => {
|
||||||
|
// Check without ID first
|
||||||
|
await page.goto('./account');
|
||||||
|
await expect(page.locator('div.bg-slate-100.rounded-md').filter({ hasText: 'Usage Limits' })).toBeHidden();
|
||||||
|
|
||||||
|
// Import user 01
|
||||||
|
await importUser(page, '01');
|
||||||
|
|
||||||
|
// Verify that "Usage Limits" section is visible
|
||||||
|
await expect(page.locator('#sectionUsageLimits')).toBeVisible();
|
||||||
|
await expect(page.getByText('Your claims counter resets')).toBeVisible();
|
||||||
|
await expect(page.getByText('Your registration counter resets')).toBeVisible();
|
||||||
|
await expect(page.getByText('Your image counter resets')).toBeVisible();
|
||||||
|
await expect(page.getByRole('button', { name: 'Recheck Limits' })).toBeVisible();
|
||||||
|
});
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
import { test, expect } from '@playwright/test';
|
import { test, expect } from '@playwright/test';
|
||||||
|
|
||||||
test('Create new project', async ({ page }) => {
|
test('Create new project, then search for it', async ({ page }) => {
|
||||||
// Generate a random string of 16 characters
|
// Generate a random string of 16 characters
|
||||||
let randomString = Math.random().toString(36).substring(2, 18);
|
let randomString = Math.random().toString(36).substring(2, 18);
|
||||||
|
|
||||||
@@ -18,16 +18,8 @@ test('Create new project', async ({ page }) => {
|
|||||||
const finalTitle = standardTitle + finalRandomString;
|
const finalTitle = standardTitle + finalRandomString;
|
||||||
const finalDescription = standardDescription + finalRandomString;
|
const finalDescription = standardDescription + finalRandomString;
|
||||||
|
|
||||||
// Create new ID using seed phrase "rigid shrug mobile…"
|
// Import user 00
|
||||||
await page.goto('./start');
|
await importUser(page, '00');
|
||||||
await page.getByText('You have a seed').click();
|
|
||||||
await page.getByPlaceholder('Seed Phrase').fill('rigid shrug mobile smart veteran half all pond toilet brave review universe ship congress found yard skate elite apology jar uniform subway slender luggage');
|
|
||||||
await page.getByRole('button', { name: 'Import' }).click();
|
|
||||||
|
|
||||||
// Set name
|
|
||||||
await page.getByRole('link', { name: 'Set Your Name' }).click();
|
|
||||||
await page.getByPlaceholder('Name').fill('User Zero');
|
|
||||||
await page.getByRole('button', { name: 'Save Changes' }).click();
|
|
||||||
|
|
||||||
// Pause for 5 seconds
|
// Pause for 5 seconds
|
||||||
await page.waitForTimeout(5000); // I have to wait, otherwise the (+) button to add a new project doesn't appear
|
await page.waitForTimeout(5000); // I have to wait, otherwise the (+) button to add a new project doesn't appear
|
||||||
@@ -46,4 +38,11 @@ test('Create new project', async ({ page }) => {
|
|||||||
// Check texts
|
// Check texts
|
||||||
await expect(page.locator('h2')).toContainText(finalTitle);
|
await expect(page.locator('h2')).toContainText(finalTitle);
|
||||||
await expect(page.locator('#Content')).toContainText(finalDescription);
|
await expect(page.locator('#Content')).toContainText(finalDescription);
|
||||||
|
|
||||||
|
// Search for project that was just created
|
||||||
|
await page.goto('./discover');
|
||||||
|
await page.waitForTimeout(5000); // Wait for a bit
|
||||||
|
await page.getByPlaceholder('Search…').fill(finalRandomString);
|
||||||
|
await page.locator('#QuickSearch button').click();
|
||||||
|
await expect(page.locator('ul#listDiscoverResults li.border-b:nth-child(1)')).toContainText(finalRandomString);
|
||||||
});
|
});
|
||||||
@@ -19,16 +19,8 @@ test('Record something given', async ({ page }) => {
|
|||||||
// Combine title prefix with the random string
|
// Combine title prefix with the random string
|
||||||
const finalTitle = standardTitle + finalRandomString;
|
const finalTitle = standardTitle + finalRandomString;
|
||||||
|
|
||||||
// Create new ID using seed phrase "rigid shrug mobile…"
|
// Import user 00
|
||||||
await page.goto('./start');
|
await importUser(page, '00');
|
||||||
await page.getByText('You have a seed').click();
|
|
||||||
await page.getByPlaceholder('Seed Phrase').fill('rigid shrug mobile smart veteran half all pond toilet brave review universe ship congress found yard skate elite apology jar uniform subway slender luggage');
|
|
||||||
await page.getByRole('button', { name: 'Import' }).click();
|
|
||||||
|
|
||||||
// Set name
|
|
||||||
await page.getByRole('link', { name: 'Set Your Name' }).click();
|
|
||||||
await page.getByPlaceholder('Name').fill('User Zero');
|
|
||||||
await page.getByRole('button', { name: 'Save Changes' }).click();
|
|
||||||
|
|
||||||
// Record something given
|
// Record something given
|
||||||
await page.goto('./');
|
await page.goto('./');
|
||||||
|
|||||||
@@ -1,16 +1,8 @@
|
|||||||
import { test, expect } from '@playwright/test';
|
import { test, expect } from '@playwright/test';
|
||||||
|
|
||||||
test('Add contact', async ({ page }) => {
|
test('Add contact', async ({ page }) => {
|
||||||
// Create new ID using seed phrase "island fever beef…"
|
// Import user 01
|
||||||
await page.goto('./start');
|
await importUser(page, '01');
|
||||||
await page.getByText('You have a seed').click();
|
|
||||||
await page.getByPlaceholder('Seed Phrase').fill('island fever beef wine urban aim vacant quit afford total poem flame service calm better adult neither color gaze forum month sister imitate excite');
|
|
||||||
await page.getByRole('button', { name: 'Import' }).click();
|
|
||||||
|
|
||||||
// Set name
|
|
||||||
await page.getByRole('link', { name: 'Set Your Name' }).click();
|
|
||||||
await page.getByPlaceholder('Name').fill('User One');
|
|
||||||
await page.getByRole('button', { name: 'Save Changes' }).click();
|
|
||||||
|
|
||||||
// Add new contact 00
|
// Add new contact 00
|
||||||
await page.goto('./contacts');
|
await page.goto('./contacts');
|
||||||
|
|||||||
Reference in New Issue
Block a user