This commit is contained in:
Max Schmitt 2024-05-29 16:12:59 +02:00
parent 64bfb196af
commit 1817229217
2 changed files with 2 additions and 3 deletions

View file

@ -21,7 +21,7 @@
},
{
"name": "firefox-beta",
"revision": "1451",
"revision": "1452",
"installByDefault": false,
"browserVersion": "127.0b3"
},

View file

@ -255,8 +255,7 @@ it('frame.press should work', async ({ page, server }) => {
expect(await frame.evaluate(() => document.querySelector('textarea').value)).toBe('a');
});
it('has navigator.webdriver set to true', async ({ page, browserName }) => {
it.skip(browserName === 'firefox');
it('has navigator.webdriver set to true', async ({ page }) => {
expect(await page.evaluate(() => navigator.webdriver)).toBe(true);
});