mirror of
https://github.com/inventree/InvenTree.git
synced 2025-12-17 09:48:30 +00:00
* Allow port 4173 (vite preview) * Change 'base' attr based on vite command * Allow api_host to be specified separately * Harden API host functionality * Adjust server selections * Cleanup vite.config.ts * Adjust playwright configuration - Allow to run in "production" mode - Builds the code first - Runs only the backend web server - Not suitable for coverage * Tweak github actions * Tweak QC file * Reduce number of steps * Tweak CI file * Fix typo * Ensure translation before build * Fix hard-coded test * Test tweaks * uncomment * Revert some changes * Run with gunicorn, single worker * Reduce log output in DEBUG mode * Update deps * Add global-setup func * Fix for .gitignore file * Cached auth state * Tweak login func * Updated tests * Enable parallel workers again * Simplify config * Try with a single worker again * Single retry mode * Run auth setup first - Prevent issues with parallel test doing login * Improve test setup process * Tweaks * Bump to 3 workers * Tweak playwright settings * Revert change * Revert change
41 lines
1.6 KiB
TypeScript
41 lines
1.6 KiB
TypeScript
import { test } from '../baseFixtures.js';
|
|
import { loadTab, navigate } from '../helpers.js';
|
|
import { doCachedLogin } from '../login.js';
|
|
|
|
test('Company', async ({ browser }) => {
|
|
const page = await doCachedLogin(browser);
|
|
|
|
await navigate(page, 'company/1/details');
|
|
await page.getByLabel('Details').getByText('DigiKey Electronics').waitFor();
|
|
await page.getByRole('cell', { name: 'https://www.digikey.com/' }).waitFor();
|
|
await loadTab(page, 'Supplied Parts');
|
|
await page
|
|
.getByRole('cell', { name: 'RR05P100KDTR-ND', exact: true })
|
|
.waitFor();
|
|
await loadTab(page, 'Purchase Orders');
|
|
await page.getByRole('cell', { name: 'Molex connectors' }).first().waitFor();
|
|
await loadTab(page, 'Stock Items');
|
|
await page
|
|
.getByRole('cell', { name: 'Blue plastic enclosure' })
|
|
.first()
|
|
.waitFor();
|
|
await loadTab(page, 'Contacts');
|
|
await page.getByRole('cell', { name: 'jimmy.mcleod@digikey.com' }).waitFor();
|
|
await loadTab(page, 'Addresses');
|
|
await page.getByRole('cell', { name: 'Carla Tunnel' }).waitFor();
|
|
await loadTab(page, 'Attachments');
|
|
await loadTab(page, 'Notes');
|
|
|
|
// Let's edit the company details
|
|
await page.getByLabel('action-menu-company-actions').click();
|
|
await page.getByLabel('action-menu-company-actions-edit').click();
|
|
|
|
await page.getByLabel('text-field-name').fill('');
|
|
await page.getByLabel('text-field-website').fill('invalid-website');
|
|
await page.getByRole('button', { name: 'Submit' }).click();
|
|
|
|
await page.getByText('This field may not be blank.').waitFor();
|
|
await page.getByText('Enter a valid URL.').waitFor();
|
|
await page.getByRole('button', { name: 'Cancel' }).click();
|
|
});
|