mirror of
https://github.com/penpot/penpot.git
synced 2025-05-31 16:26:13 +02:00
Merge remote-tracking branch 'origin/staging' into develop
This commit is contained in:
commit
c165303f83
4 changed files with 31 additions and 10 deletions
|
@ -162,3 +162,22 @@ test("Create a RADIAL gradient", async ({ page }) => {
|
|||
.nth(2);
|
||||
await inputOpacity2.fill("100");
|
||||
});
|
||||
|
||||
// Fix for https://tree.taiga.io/project/penpot/issue/9900
|
||||
test("Bug 9900 - Color picker has no inputs for HSV values", async ({
|
||||
page,
|
||||
}) => {
|
||||
const workspacePage = new WorkspacePage(page);
|
||||
await workspacePage.setupEmptyFile(page);
|
||||
|
||||
await workspacePage.goToWorkspace();
|
||||
const swatch = workspacePage.page.getByRole("button", { name: "E8E9EA" });
|
||||
await swatch.click();
|
||||
|
||||
const HSVA = await workspacePage.page.getByLabel("HSVA");
|
||||
await HSVA.click();
|
||||
|
||||
await workspacePage.page.getByLabel("H", { exact: true }).isVisible();
|
||||
await workspacePage.page.getByLabel("S", { exact: true }).isVisible();
|
||||
await workspacePage.page.getByLabel("V", { exact: true }).isVisible();
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue