22 lines
814 B
TypeScript
22 lines
814 B
TypeScript
|
|
import { test as base, expect } from '@playwright/test';
|
||
|
|
import FEATURE_TOGGLE from 'docs/src/featureToggle';
|
||
|
|
import { TestFixture } from './playwright.config';
|
||
|
|
|
||
|
|
const test = base.extend<TestFixture>({});
|
||
|
|
|
||
|
|
test('should be able to change color without crash', async ({ page }) => {
|
||
|
|
await page.goto('/material-ui/customization/color/#playground', { waitUntil: 'networkidle' });
|
||
|
|
|
||
|
|
await page.fill('#primary', ''); // clear the input
|
||
|
|
await page.type('#primary', '#e91e63');
|
||
|
|
|
||
|
|
await page.fill('#secondary', ''); // clear the input
|
||
|
|
await page.type('#secondary', '#ffc400');
|
||
|
|
|
||
|
|
await page.click('button:has-text("Set Docs Colors")');
|
||
|
|
|
||
|
|
await page.click('#mui-version-selector'); // can open any menu, just to make sure that it does not break
|
||
|
|
|
||
|
|
await expect(page.locator('#mui-version-menu')).toBeVisible();
|
||
|
|
});
|