diff --git a/puppeteer/tests/test_root_password.js b/puppeteer/tests/test_root_password.js index 02e5f27d78..32bb7b65a1 100644 --- a/puppeteer/tests/test_root_password.js +++ b/puppeteer/tests/test_root_password.js @@ -119,6 +119,13 @@ describe("Agama test", function () { await page.click("button[type='submit']"); }); + it("should require setting the root password", async function () { + await page.waitForSelector("input#rootPassword"); + // for simplicity just set the current password + await page.type("input#rootPassword", agamaPassword); + await page.click("button[type='submit']"); + }); + it("should optionally display the product selection dialog", async function () { this.timeout(60000); // Either the main page is displayed (with the storage link) or there is @@ -143,7 +150,7 @@ describe("Agama test", function () { this.skip(); } }); - + it("should display overview card", async function () { await page.waitForSelector("h3::-p-text('Overview')"); });