Fix browser name change test not actually changing name

This commit is contained in:
Gabe Kangas
2021-11-16 17:41:31 -08:00
parent 4d998ac589
commit a14f174183
2 changed files with 24 additions and 17 deletions

View File

@@ -32,11 +32,17 @@ async function interactiveChatTest(
await page.evaluate(() =>
document.querySelector('#username-change-input').click()
);
await page.type('#username-change-input', newName);
await page.waitForSelector('#button-update-username');
await page.evaluate(() =>
document.querySelector('#button-update-username').click()
);
// page.keyboard.press('Enter');
await page.waitForTimeout(3000);
});
it('should allow typing a chat message', async () => {